nixos/H0615.nix

28 lines
617 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
imports = [
./home
./common.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./hardware/audio.nix
2023-05-09 13:52:52 +01:00
./syncthing/H0615.nix
];
networking.hostName = "H0615"; # Define your hostname.
# Define a user account. Don't forget to set a password with passwd.
users.users.elitherl = {
isNormalUser = true;
description = "Evie Litherland-Smith";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.fish;
};
home-manager.users.elitherl = import ./home/H0615/elitherl.nix;
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
}