This commit is contained in:
Michael Thomson
2026-02-17 10:01:22 -05:00
parent e7d0282ec8
commit 8cbc0e30a8
11 changed files with 110 additions and 157 deletions

View File

@@ -6,7 +6,7 @@
}: {
imports = [
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
../../modules/common/common.nix
../../modules/nixos/bootloader.nix
../../modules/nixos/user.nix
../../modules/nixos/ssh.nix
@@ -19,18 +19,8 @@
../../modules/nixos/docker.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "desktop";
time.timeZone = "America/Toronto";
i18n.defaultLocale = "en_CA.UTF-8";
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
environment.systemPackages = with pkgs; [
wget
git
@@ -38,14 +28,5 @@
lsof
];
home-manager = {
extraSpecialArgs = {inherit inputs;};
useGlobalPkgs = true;
useUserPackages = true;
users = {
mthomson = import ./home.nix;
};
};
system.stateVersion = "23.11";
}