nixos/H0615.nix

27 lines
608 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [
./home
./common.nix
./hardware/audio.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./services/syncthing/H0615.nix
];
networking.hostName = "H0615"; # Define your hostname.
2023-06-05 09:23:05 +01:00
services.xserver.displayManager.defaultSession = "hyprland";
users.users.elitherl = {
isNormalUser = true;
description = "Evie Litherland-Smith";
2023-05-17 17:10:18 +01:00
extraGroups = ["networkmanager" "wheel"];
shell = pkgs.fish;
};
home-manager.users.elitherl = import ./home/H0615/elitherl.nix;
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
}