nixos/J0162.nix

28 lines
620 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
imports = [
./home
./common.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./hardware/audio.nix
./hardware/bluetooth.nix
];
networking.hostName = "J0162"; # 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/J0162/elitherl.nix;
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
}