diff --git a/hosts/hulk/default.nix b/hosts/hulk/default.nix index 3c7481c..a4800c6 100644 --- a/hosts/hulk/default.nix +++ b/hosts/hulk/default.nix @@ -1,21 +1,27 @@ { - imports = [ - ./hardware-configuration.nix - ./modules.nix - ./services.nix - ./programs.nix - ./users.nix - ./networking.nix - ./fonts.nix - ]; + imports = [ + ./hardware-configuration.nix + ./modules.nix + ./services.nix + ./programs.nix + ./users.nix + ./networking.nix + ./fonts.nix + ]; - nix.settings.experimental-features = [ "nix-command" "flakes" ]; - nixpkgs.config.allowUnfree = true; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-old"; + }; + + nixpkgs.config.allowUnfree = true; - swapDevices = [ - { - device = "/swap"; - size = 8192; - } - ]; + swapDevices = [ + { + device = "/swap"; + size = 8192; + } + ]; } diff --git a/profiles/hulk/programs.nix b/profiles/hulk/programs.nix index c7adfe9..9290699 100644 --- a/profiles/hulk/programs.nix +++ b/profiles/hulk/programs.nix @@ -9,7 +9,7 @@ extraPackages = with inputs.ags.packages.${pkgs.system}; [ apps battery bluetooth greet hyprland mpris network notifd powerprofiles tray wireplumber ] ++ [ - pkgs.fzf pkgs.icon-library + pkgs.dart-sass pkgs.fzf pkgs.icon-library ]; }; diff --git a/profiles/hulk/theme.nix b/profiles/hulk/theme.nix index 178a9fa..c60ac9a 100644 --- a/profiles/hulk/theme.nix +++ b/profiles/hulk/theme.nix @@ -16,21 +16,22 @@ in { home = { packages = with pkgs; [ - adw-gtk3 material-symbols noto-fonts noto-fonts-cjk-sans bibata-cursors ]; - sessionVariables = { + + sessionVariables = { XCURSOR_THEME = cursor-theme; XCURSOR_SIZE = "24"; }; - pointerCursor = { + + pointerCursor = { package = cursor-pkg; name = cursor-theme; size = 24; gtk.enable = true; }; - }; + }; }