47 lines
929 B
Nix
47 lines
929 B
Nix
{ pkgs, user, ... } :
|
|
{
|
|
imports = [
|
|
./apps/flatpaks.nix
|
|
./apps/packages.nix
|
|
./core/files.nix
|
|
./core/locale.nix
|
|
./core/networking.nix
|
|
./core/nix-settings.nix
|
|
./core/login-tuigreeter.nix
|
|
#./core/login-lightdm.nix
|
|
./desktop/audio.nix
|
|
./desktop/hyprland.nix
|
|
./dev/terminal.nix
|
|
./core/boot.nix
|
|
./services/services.nix
|
|
./end_script.nix
|
|
];
|
|
|
|
|
|
|
|
users.users.${user.username} = {
|
|
isNormalUser = true;
|
|
description = "henrov";
|
|
extraGroups = [
|
|
"networkmanager" # allow editing network connections
|
|
"wheel" # can do sudo
|
|
"scanner" # access to the network scanner
|
|
"lp" # access to the printer
|
|
];
|
|
};
|
|
|
|
|
|
|
|
fonts.packages = with pkgs; [
|
|
aporetic
|
|
nerd-fonts.iosevka
|
|
];
|
|
|
|
# enable the catppuccin theme for everything with mocha + blue accents
|
|
catppuccin.enable = true;
|
|
catppuccin.flavor = "mocha";
|
|
catppuccin.accent = "blue";
|
|
|
|
system.stateVersion = user.stateVersion;
|
|
}
|