summaryrefslogtreecommitdiff
path: root/hosts/glados-wsl/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-27 05:48:52 -0500
committerseth <[email protected]>2023-01-27 05:48:52 -0500
commit6dd3d7415b0a9388b6fdbff6d39ba5ad8123283c (patch)
treee6df5cd7e08b3c434d3918498fb934f1501206b3 /hosts/glados-wsl/default.nix
parentd4cb82429ce0f531cac1a2d6e1b256c5d1b5f726 (diff)
stop repeating things for hosts
Diffstat (limited to 'hosts/glados-wsl/default.nix')
-rw-r--r--hosts/glados-wsl/default.nix18
1 files changed, 1 insertions, 17 deletions
diff --git a/hosts/glados-wsl/default.nix b/hosts/glados-wsl/default.nix
index fa4a750..b9057cf 100644
--- a/hosts/glados-wsl/default.nix
+++ b/hosts/glados-wsl/default.nix
@@ -1,23 +1,7 @@
-{
- config,
- modulesPath,
- pkgs,
- ...
-}: {
+{modulesPath, ...}: {
imports = [
(modulesPath + "/profiles/minimal.nix")
- ../common
- ../../users/seth
];
sys.wsl.enable = true;
-
- # enable non-free packages
- nixpkgs.config.allowUnfree = true;
-
- # Enable nix flakes
- nix.package = pkgs.nixFlakes;
- nix.settings.experimental-features = ["nix-command" "flakes"];
-
- system.stateVersion = "22.11";
}