diff options
Diffstat (limited to 'templates/nixos/flake.nix')
| -rw-r--r-- | templates/nixos/flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/nixos/flake.nix b/templates/nixos/flake.nix index a8c2e09..235ce27 100644 --- a/templates/nixos/flake.nix +++ b/templates/nixos/flake.nix @@ -19,14 +19,14 @@ forAllSystems = fn: nixpkgs.lib.genAttrs systems (sys: fn nixpkgs.legacyPackages.${sys}); in { - nixosConfigurations."myHostname" = nixpkgs.lib.nixosSystem { + nixosConfigurations.myComputer = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [./configuration.nix]; specialArgs = {inherit inputs;}; }; devShells = forAllSystems (pkgs: { - default = pkgs.mkShell { + default = pkgs.mkShellNoCC { packages = with pkgs; [ just fzf |
