summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/ades/common.nix1
-rw-r--r--hosts/ades/users.nix11
2 files changed, 12 insertions, 0 deletions
diff --git a/hosts/ades/common.nix b/hosts/ades/common.nix
index 3f6dc85..38387bf 100644
--- a/hosts/ades/common.nix
+++ b/hosts/ades/common.nix
@@ -3,6 +3,7 @@
{
imports = [
./hardware.nix
+ ./users.nix
];
this.pc.enable = true;
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;
+ };
+}