about summary refs log tree commit diff stats
path: root/nix-conf
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-09-03 15:51:53 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-09-03 15:51:53 +0100
commitbf2fc0f49f887fccbd37e8e6cf2a620da052ae32 (patch)
tree787506480cdf919e97a9bf09317f984ff3d65425 /nix-conf
parent31e462e924c50523e0a37069eb7c043c48b0f390 (diff)
downloaddotfiles-bf2fc0f49f887fccbd37e8e6cf2a620da052ae32.tar.gz
Format main home files with nixfmt
Diffstat (limited to 'nix-conf')
-rw-r--r--nix-conf/home/djmuk1.nix9
-rw-r--r--nix-conf/home/djmuk2.nix7
-rw-r--r--nix-conf/home/edrahil.nix12
-rw-r--r--nix-conf/home/egalmoth.nix9
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