diff options
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 5 | ||||
-rw-r--r-- | flake/nixosConfigurations/default.nix | 8 |
2 files changed, 8 insertions, 5 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 ; }; |