This commit is contained in:
Michael Thomson 2025-07-08 18:02:04 +00:00
parent 560e8e5a00
commit a6b6ed3bc7
3 changed files with 5 additions and 2 deletions

View File

@ -62,6 +62,7 @@
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
nixos-wsl.nixosModules.default
./hosts/wsl/configuration.nix
];
};

View File

@ -9,7 +9,6 @@
{
imports = [
inputs.nixos-wsl.nixosModules.default
inputs.home-manager.nixosModules.default
../../modules/nixos/user.nix
];
@ -29,6 +28,8 @@
nix.settings.experimental-features = ["nix-command" "flakes"];
programs.nix-ld.enable = true;
home-manager = {
extraSpecialArgs = {inherit inputs;};
useGlobalPkgs = true;
@ -38,5 +39,7 @@
};
};
system.stateVersion = "24.11";
}

View File

@ -12,7 +12,6 @@
../../modules/home-manager/jq.nix
../../modules/home-manager/lazygit.nix
../../modules/home-manager/man.nix
../../modules/home-manager/emacs
];
home.username = "mthomson";
home.homeDirectory = "/home/mthomson";