mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-03 19:48:52 -05:00
Rename some scopes, set most defaults to false and require hosts to want them instead of needing to opt out of them
This commit is contained in:
parent
18b3a6c64b
commit
99b5ace0a3
9 changed files with 57 additions and 63 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, lib, config, ...}: {
|
||||
config.users.users.crow = lib.mkIf config.users.crow.enable {
|
||||
config.users.users.crow = lib.mkIf config.user.crow.enable {
|
||||
isNormalUser = true;
|
||||
initialPassword = "changeme";
|
||||
extraGroups = [ "wheel" "networkmanager" "audio" ];
|
||||
|
|
@ -21,5 +21,5 @@
|
|||
script = "cd /home/crow/Notes\ngit pull\ngit add .\ngit diff-index --quiet HEAD || git commit -am 'automatic backup'\ngit push";
|
||||
};
|
||||
|
||||
config.home-manager.users.crow = lib.mkIf config.users.crow.home.enable ./home.nix;
|
||||
config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, config, ...}: {
|
||||
config.users.users.overseer = lib.mkIf config.users.overseer.enable {
|
||||
config.users.users.overseer = lib.mkIf config.user.overseer.enable {
|
||||
isNormalUser = true;
|
||||
initialPassword = "changeme";
|
||||
extraGroups = [ "wheel" "libvirtd" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue