9 lines
192 B
Nix
9 lines
192 B
Nix
|
{ config, lib, pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
# Setup system configuration
|
||
|
nathan = { config = { isDesktop = true; }; };
|
||
|
# Setup home manager
|
||
|
home-manager.users.nathan = import ./home.nix;
|
||
|
}
|