about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--flake.nix5
-rw-r--r--flake/nixosConfigurations/default.nix8
-rw-r--r--home-manager/config/gpg/default.nix2
3 files changed, 9 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 537c77d6..378c545f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -89,7 +89,10 @@
   }: let
     sysLib = import ./lib {inherit pkgs shell-library;};
     system = "x86_64-linux";
-    pkgs = import nixpkgs (import ./system/nixpkgs {inherit (nixpkgs) lib; inherit system;});
+    pkgs = import nixpkgs (import ./system/nixpkgs {
+      inherit (nixpkgs) lib;
+      inherit system;
+    });
   in {
     nixosConfigurations = import ./flake/nixosConfigurations {
       inherit
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix
index 360728e1..95dd220f 100644
--- a/flake/nixosConfigurations/default.nix
+++ b/flake/nixosConfigurations/default.nix
@@ -31,10 +31,10 @@
           pkgs
           sysLib
           # extra information
-
+          
           system
           # bins
-
+          
           yambar_cpu
           yambar_memory
           strip_js_comments
@@ -42,12 +42,12 @@
           grades
           shell-library
           # external deps
-
+          
           user_js
           neovim_config
           snap-sync
           # modules
-
+          
           impermanence
           ;
       };
diff --git a/home-manager/config/gpg/default.nix b/home-manager/config/gpg/default.nix
index de6f7caa..9457e171 100644
--- a/home-manager/config/gpg/default.nix
+++ b/home-manager/config/gpg/default.nix
@@ -10,7 +10,7 @@
     #mutableTrust = false;
     settings = {
       # Hardware-based GPG configuration
-      agent-program =  "/home/soispha/.local/share/gnupg/onlykey/run-agent.sh";
+      agent-program = "/home/soispha/.local/share/gnupg/onlykey/run-agent.sh";
       default-key = "Soispha <soispha@vhack.eu>";
       # TODO add more
     };