summaryrefslogtreecommitdiff
path: root/hosts/ades/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/ades/users.nix')
-rw-r--r--hosts/ades/users.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/ades/users.nix b/hosts/ades/users.nix
new file mode 100644
index 0000000..9da8982
--- /dev/null
+++ b/hosts/ades/users.nix
@@ -0,0 +1,11 @@
+{ lib, pkgs, ... }:
+
+{
+ this.users.enabled = [
+ "simon"
+ ];
+
+ users.users.simon = {
+ shell = lib.mkForce pkgs.bash;
+ };
+}