reorganize

This commit is contained in:
2024-02-27 10:52:11 -05:00
parent ccecea715c
commit 30cba6caf1
13 changed files with 120 additions and 40 deletions

View File

@@ -0,0 +1,25 @@
{ config, pkgs, inputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
inputs.home-manager.nixosModules.default
];
environment.systemPackages = with pkgs; [
hello
];
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
users = {
"mthomson" = import ./home.nix;
};
};
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
}