It works now
This commit is contained in:
parent
d6b8d3e30f
commit
16236b53e7
@ -5,7 +5,7 @@ with lib; let
|
|||||||
in {
|
in {
|
||||||
options.user.cameron = {
|
options.user.cameron = {
|
||||||
enable = mkEnableOption "user cameron";
|
enable = mkEnableOption "user cameron";
|
||||||
}
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
users = {
|
users = {
|
||||||
@ -17,7 +17,8 @@ in {
|
|||||||
|
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
group = "cameron";
|
group = "cameron";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "wheel" ] ++
|
||||||
|
(lib.optionals config.networking.networkmanager.enable [ "networkmanager" ]);
|
||||||
|
|
||||||
home = "/home/cameron-nix";
|
home = "/home/cameron-nix";
|
||||||
createHome = true;
|
createHome = true;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
description = "My nixos config as a flake";
|
description = "My nixos config as a flake";
|
||||||
|
|
||||||
|
|
||||||
@ -18,11 +17,10 @@
|
|||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = inputs;
|
specialArgs = inputs;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./hosts/nixos/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user