2023-03-29 15:38:01 +01:00
|
|
|
|
{ pkgs, ... }:
|
2023-04-25 14:27:28 +01:00
|
|
|
|
let
|
|
|
|
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
|
|
|
|
in
|
2023-03-28 17:14:10 +01:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
2023-04-25 14:27:28 +01:00
|
|
|
|
(import "${home-manager}/nixos")
|
2023-03-29 13:43:02 +01:00
|
|
|
|
./common.nix
|
2023-04-29 12:36:57 +01:00
|
|
|
|
./hardware/audio.nix
|
2023-03-29 13:43:02 +01:00
|
|
|
|
./locales/en_GB.nix
|
2023-04-26 15:25:40 +01:00
|
|
|
|
./desktop/hyprland.nix
|
2023-03-28 17:14:10 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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" ];
|
2023-03-29 15:38:01 +01:00
|
|
|
|
shell = pkgs.fish;
|
2023-03-28 17:14:10 +01:00
|
|
|
|
};
|
2023-04-25 14:27:28 +01:00
|
|
|
|
home-manager.users.elitherl = { ... }: {
|
2023-04-25 14:43:08 +01:00
|
|
|
|
imports = [ ./home/collections/work ];
|
2023-04-25 14:27:28 +01:00
|
|
|
|
# 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-04 07:01:03 +01:00
|
|
|
|
|
|
|
|
|
system.autoUpgrade = {
|
|
|
|
|
enable = false;
|
|
|
|
|
allowReboot = false;
|
|
|
|
|
};
|
2023-03-28 17:14:10 +01:00
|
|
|
|
}
|