Refactor: Moved profiles/*/home to users/kat/... Reorganised

users/kat/...
This commit is contained in:
kat witch 2021-05-06 15:43:59 +01:00
parent 99da1a04e4
commit 82d22bf87b
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
82 changed files with 302 additions and 428 deletions

11
users/kat/default.nix Normal file
View file

@ -0,0 +1,11 @@
rec {
base = ./nixos/base.nix;
gui = ./nixos/gui.nix;
sway = ./nixos/sway.nix;
dev = ./nixos/dev.nix;
media = ./nixos/media.nix;
personal = ./nixos/personal.nix;
server = { imports = [ personal ]; };
guiFull = { imports = [ gui sway dev media personal ]; };
}