about summary refs log tree commit diff stats
path: root/hosts/mammun/default.nix
blob: 4bf0c9750ffba2df8216e7ed27674683f38438d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# vim: ts=2
{
  config,
  lib,
  nixpkgs,
  home-manager,
  pkgs,
  ...
}: {
  imports = [
    ./hardware
    ./networking.nix

    ../../system
  ];
  soispha = {

    locale.enable = true;
    users = {
      hashedPassword = "$y$jDT$O/42/7REOL50onRYcTV9R1$Ot3bPAh2raHmPN3yScP4wsJRtNqrMtTBzOq9oRJeRA0";
    };
  };

  system.stateVersion = "23.05";
}