diff options
author | Linnnus <[email protected]> | 2025-02-21 18:03:30 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-21 18:03:52 +0100 |
commit | 3d9cf579a3e4d40221e08c36048e1f0d1de15ed0 (patch) | |
tree | 4205852e76de53fcaf675ce68f6ffa0285c30f4a /hosts/muhammed/dev-vm/configuration/user.nix | |
parent | 3900ce318bd6a656822f3cfebc5a2c1c39ef0bea (diff) |
muhammed: Remove dev-vm
Diffstat (limited to 'hosts/muhammed/dev-vm/configuration/user.nix')
-rw-r--r-- | hosts/muhammed/dev-vm/configuration/user.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/hosts/muhammed/dev-vm/configuration/user.nix b/hosts/muhammed/dev-vm/configuration/user.nix deleted file mode 100644 index bf2b93f..0000000 --- a/hosts/muhammed/dev-vm/configuration/user.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - # Register the user which we will be logging into from the host. - users.users.linus = { - isNormalUser = true; - password = "diller"; # Don't care. No security implications. - extraGroups = ["wheel"]; - }; - - home-manager.users.linus = { - imports = [ - ../../../../shared/home-manager/development-full - ]; - home.stateVersion = "24.05"; - }; - - # Allow passwordless sudo for easy use. We don't have to be too worried about wrecking the system. - security.sudo.extraRules = [ - { - users = ["linus"]; - commands = ["ALL"]; - } - ]; -} |