diff --git a/users/functionalhacker/home.nix b/users/functionalhacker/home.nix index 216ea088..f44e8653 100644 --- a/users/functionalhacker/home.nix +++ b/users/functionalhacker/home.nix @@ -1,21 +1,7 @@ { pkgs, ... }: { - imports = [ - ./bat.nix - ./eza.nix - ./firefox.nix - ./fzf.nix - ./git.nix - ./gnome.nix - ./gpg.nix - ./neovim.nix - ./pass.nix - ./ripgrep.nix - ./ssh.nix - ./zellij.nix - ./zsh.nix - ]; + imports = [ ./programs/configuration.nix ]; home = { username = "functionalhacker"; diff --git a/users/functionalhacker/programs/configuration.nix b/users/functionalhacker/programs/configuration.nix new file mode 100644 index 00000000..eff41242 --- /dev/null +++ b/users/functionalhacker/programs/configuration.nix @@ -0,0 +1,20 @@ +{ ... }: + + +{ + imports = [ + ./bat.nix + ./eza.nix + ./firefox.nix + ./fzf.nix + ./git.nix + ./gnome.nix + ./gpg.nix + ./neovim.nix + ./pass.nix + ./ripgrep.nix + ./ssh.nix + ./zellij.nix + ./zsh.nix + ]; +} diff --git a/users/som/home.nix b/users/som/home.nix index 4ae3217d..1f9c7b82 100644 --- a/users/som/home.nix +++ b/users/som/home.nix @@ -1,9 +1,7 @@ { ... }: { - imports = [ - ./programs/gnome.nix - ]; + imports = [ ./programs/configuration.nix ]; home = { username = "som"; diff --git a/users/som/programs/configuration.nix b/users/som/programs/configuration.nix new file mode 100644 index 00000000..c94228df --- /dev/null +++ b/users/som/programs/configuration.nix @@ -0,0 +1,8 @@ +{ ... }: + + +{ + imports = [ + ./gnome.nix + ]; +}