added home-manager modules as an output in flake.nix, allowing for machine-specific home-manager configs

This commit is contained in:
pagedmov
2024-11-01 21:30:26 -04:00
parent e035de79e4
commit 08bed40c52
8 changed files with 45 additions and 53 deletions

View File

@@ -1,7 +1,10 @@
{pkgs, ...}: {
system.stateVersion = "24.05";
nixpkgs.config.allowUnfree = true;
imports = [ ./hardware.nix ];
imports = [
./hardware.nix
./home.nix
];
nix = {
settings = {
auto-optimise-store = true;