It works now

This commit is contained in:
Cameron Reed 2024-01-09 17:41:10 -07:00
parent d6b8d3e30f
commit 16236b53e7
2 changed files with 5 additions and 6 deletions

View File

@ -5,7 +5,7 @@ with lib; let
in {
options.user.cameron = {
enable = mkEnableOption "user cameron";
}
};
config = mkIf cfg.enable {
users = {
@ -17,7 +17,8 @@ in {
uid = 1000;
group = "cameron";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "wheel" ] ++
(lib.optionals config.networking.networkmanager.enable [ "networkmanager" ]);
home = "/home/cameron-nix";
createHome = true;

View File

@ -1,5 +1,4 @@
{
description = "My nixos config as a flake";
@ -8,7 +7,7 @@
};
outputs = { self, nixpkgs }@inputs:
outputs = { self, nixpkgs }@inputs:
let
lib = nixpkgs.lib;
in {
@ -18,11 +17,10 @@
system = "x86_64-linux";
specialArgs = inputs;
modules = [
./configuration.nix
./hosts/nixos/configuration.nix
];
};
};
};
}