diff options
Diffstat (limited to 'nix-conf')
-rw-r--r-- | nix-conf/home/djmuk1.nix | 9 | ||||
-rw-r--r-- | nix-conf/home/djmuk2.nix | 7 | ||||
-rw-r--r-- | nix-conf/home/edrahil.nix | 12 | ||||
-rw-r--r-- | nix-conf/home/egalmoth.nix | 9 |
4 files changed, 11 insertions, 26 deletions
diff --git a/nix-conf/home/djmuk1.nix b/nix-conf/home/djmuk1.nix index 54b1171..6ca3473 100644 --- a/nix-conf/home/djmuk1.nix +++ b/nix-conf/home/djmuk1.nix @@ -1,8 +1,5 @@ -{ config, pkgs, ... }: -{ - imports = [ - ./includes/linux-server.nix - ]; +{ config, pkgs, ... }: { + imports = [ ./includes/linux-server.nix ]; # Let Home Manager install and manage itself. programs.home-manager.enable = true; @@ -11,7 +8,7 @@ # paths it should manage. home.username = "djm"; home.homeDirectory = "/home/djm"; - + # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards diff --git a/nix-conf/home/djmuk2.nix b/nix-conf/home/djmuk2.nix index b871056..250f564 100644 --- a/nix-conf/home/djmuk2.nix +++ b/nix-conf/home/djmuk2.nix @@ -1,8 +1,5 @@ -{ config, pkgs, ... }: -{ - imports = [ - ./includes/linux-server.nix - ]; +{ config, pkgs, ... }: { + imports = [ ./includes/linux-server.nix ]; # Let Home Manager install and manage itself. programs.home-manager.enable = true; diff --git a/nix-conf/home/edrahil.nix b/nix-conf/home/edrahil.nix index 1db7be3..4e654e3 100644 --- a/nix-conf/home/edrahil.nix +++ b/nix-conf/home/edrahil.nix @@ -1,9 +1,5 @@ -{ config, pkgs, ... }: -{ - imports = [ - ./includes/linux-server.nix - ./includes/irssi.nix - ]; +{ config, pkgs, ... }: { + imports = [ ./includes/linux-server.nix ./includes/irssi.nix ]; # Let Home Manager install and manage itself. programs.home-manager.enable = true; @@ -13,9 +9,7 @@ home.username = "djm"; home.homeDirectory = "/home/djm"; - home.sessionVariables = { - TMUX_AUTO_ATTACH=1; - }; + home.sessionVariables = { TMUX_AUTO_ATTACH = 1; }; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage diff --git a/nix-conf/home/egalmoth.nix b/nix-conf/home/egalmoth.nix index 6e41320..e680ee3 100644 --- a/nix-conf/home/egalmoth.nix +++ b/nix-conf/home/egalmoth.nix @@ -1,8 +1,5 @@ -{ config, pkgs, ... }: -{ - imports = [ - ./includes/linux-dev.nix - ]; +{ config, pkgs, ... }: { + imports = [ ./includes/linux-dev.nix ]; # Let Home Manager install and manage itself. programs.home-manager.enable = true; @@ -11,7 +8,7 @@ # paths it should manage. home.username = "djm"; home.homeDirectory = "/home/djm"; - + # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards |