project-wide: Fixing refactor issues

This commit is contained in:
kat witch 2021-03-28 21:12:37 +01:00
parent f92e21126e
commit d8dcfada4f
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
9 changed files with 41 additions and 64 deletions

View file

@ -2,10 +2,4 @@
{
imports = [ ./home ];
options = {
deploy.profile.gui = lib.mkEnableOption "graphical system" // {
default = true;
};
};
}

View file

@ -3,11 +3,5 @@
{
imports = [ ./nixos ];
options = {
deploy.profile.gui = lib.mkEnableOption "graphical system" // {
default = true;
};
};
config = { home-manager.users.kat = { imports = [ ./home.nix ]; }; };
home-manager.users.kat = { imports = [ ./home.nix ]; };
}