about summary refs log tree commit diff stats
path: root/hosts/isimud/default.nix
blob: ec4e623c1b2286567998a9c392d7a0a0ea4a186c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{...}: {
  imports = [
    ./hardware
    ./networking.nix
    ../../system
  ];

  soispha = {
    locale = {
      enable = true;
      keyMap = "dvorak";
    };
    fs.backup = {
      enable = false;
    };
    users = {
      hashedPassword = "$y$jFT$YvneNBxEtbrysV2OMG0X30$eKHdzZxJkjD3pXuGOuqbnTaeym5.4ik6kxhE.rJxs3.";
    };
  };

  system.stateVersion = "23.05";
}