2023-03-31 13:14:35 +01:00
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
2023-05-05 15:02:31 +01:00
|
|
|
|
./home
|
2023-03-31 13:14:35 +01:00
|
|
|
|
./common.nix
|
2023-04-29 12:36:57 +01:00
|
|
|
|
./hardware/audio.nix
|
|
|
|
|
./hardware/bluetooth.nix
|
2023-03-31 13:14:35 +01:00
|
|
|
|
./locales/en_GB.nix
|
2023-04-29 12:36:57 +01:00
|
|
|
|
./desktop/hyprland.nix
|
2023-03-31 13:14:35 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
};
|
2023-04-25 14:43:08 +01:00
|
|
|
|
home-manager.users.elitherl = { ... }: {
|
|
|
|
|
imports = [ ./home/collections/work ];
|
|
|
|
|
# Home Manager needs a bit of information about you and the
|
|
|
|
|
# paths it should manage.
|
|
|
|
|
home.username = "elitherl";
|
|
|
|
|
home.homeDirectory = "/home/elitherl";
|
|
|
|
|
home.stateVersion = "22.11";
|
|
|
|
|
};
|
2023-05-05 15:02:31 +01:00
|
|
|
|
|
|
|
|
|
system.autoUpgrade = {
|
|
|
|
|
enable = false;
|
|
|
|
|
allowReboot = false;
|
|
|
|
|
};
|
2023-03-31 13:14:35 +01:00
|
|
|
|
}
|