38 lines
853 B
Nix
38 lines
853 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../common.nix
|
|
../../hardware/audio.nix
|
|
../../hardware/bluetooth.nix
|
|
../../locales/en_GB.nix
|
|
../../desktop/hyprland.nix
|
|
../../services/syncthing/N0245.nix
|
|
];
|
|
|
|
networking.hostName = "N0245"; # Define your hostname.
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
environment.etc."ppp/options".text = ''
|
|
ipcp-accept-remote
|
|
'';
|
|
users.users.elitherl = {
|
|
isNormalUser = true;
|
|
description = "Evie Litherland-Smith";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.elitherl = import ./elitherl.nix;
|
|
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = rec {
|
|
initial_session = {
|
|
command = "Hyprland";
|
|
user = "elitherl";
|
|
};
|
|
default_session = initial_session;
|
|
};
|
|
};
|
|
}
|