diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-11 01:37:43 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-11 01:37:43 -0700 |
commit | 3a44b124561f544c229c0042cd0b91d055a33409 (patch) | |
tree | f466af390e895799192268a45f2516517487d672 /hosts/common/core | |
parent | 40d73be8797434f7a6e124ce64ae38cd28a06fd0 (diff) | |
download | nix-3a44b124561f544c229c0042cd0b91d055a33409.tar nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.gz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.bz2 nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.lz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.xz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.zst nix-3a44b124561f544c229c0042cd0b91d055a33409.zip |
Add work VM and redo entire flake layout
Diffstat (limited to 'hosts/common/core')
-rw-r--r-- | hosts/common/core/default.nix | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index 8d19a9f..5fefe2d 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -1,21 +1,10 @@ { inputs, outputs, ... }: { imports = [ - inputs.home-manager.nixosModules.home-manager ./locale.nix ./nix.nix ./shells.nix ./zsh.nix - ] ++ (builtins.attrValues outputs.nixosModules); - - home-manager.extraSpecialArgs = { inherit inputs outputs; }; - - nixpkgs = { - # you can add global overlays here - overlays = builtins.attrValues outputs.overlays; - config = { - allowUnfree = true; - }; - }; + ]; hardware.enableRedistributableFirmware = true; } |