about summary refs log tree commit diff stats
path: root/hosts/lahmu/default.nix
blob: 84bfccefae094898fd68fa60fe98e4aa78c36bcf (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,
  ...
}: {
  imports = [
    ./hardware
    ./networking.nix

    ../../system
  ];

  soispha = {
    locale.enable = true;
    users = {
      # enable = true;
      hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6";
    };
  };

  system.stateVersion = "23.05";
}