summaryrefslogtreecommitdiff
path: root/hosts/ades/users.nix
blob: 9da89829e2285c3e3194cac5187428e31c148ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ lib, pkgs, ... }:

{
  this.users.enabled = [
    "simon"
  ];

  users.users.simon = {
    shell = lib.mkForce pkgs.bash;
  };
}