diff options
| author | seth <[email protected]> | 2024-05-22 01:34:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-22 16:21:31 -0600 |
| commit | 5c0438c40fd53127d4f59f22ba8bc8ba6a2ca05f (patch) | |
| tree | 9110ffa038edef5578ef44789916483503aecf3d /templates/nixos/flake.nix | |
| parent | 3e36384575ff720f073bc24a0b3bfad9f0141268 (diff) | |
templates/nixos: minor cleanup
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 |
