Compare commits

..

No commits in common. "06a7bc239a5d824c1c307ee79650016bac76a05a" and "590287a4db5bc20027fe94f69711054193a1cc46" have entirely different histories.

5 changed files with 22 additions and 35 deletions

View File

@ -1,27 +1,20 @@
{ {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./modules.nix ./modules.nix
./services.nix ./services.nix
./programs.nix ./programs.nix
./users.nix ./users.nix
./networking.nix ./networking.nix
./fonts.nix ./fonts.nix
]; ];
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nixpkgs.config.allowUnfree = true;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-old";
};
nixpkgs.config.allowUnfree = true;
swapDevices = [ swapDevices = [
{ {
device = "/swap"; device = "/swap";
size = 8192; size = 8192;
} }
]; ];
} }

View File

@ -8,7 +8,6 @@
enable = true; enable = true;
interactiveShellInit = '' interactiveShellInit = ''
set fish_greeting set fish_greeting
cat ~/.cache/wal/sequences
''; '';
shellAliases = { shellAliases = {
".." = "cd .."; ".." = "cd ..";

View File

@ -31,8 +31,6 @@ in {
lxqt.lxqt-policykit lxqt.lxqt-policykit
stdenv.cc.cc.lib stdenv.cc.cc.lib
pywal pywalfox-native
(python3.withPackages (py: with py; [ (python3.withPackages (py: with py; [
pywayland pywayland
])) ]))
@ -47,7 +45,7 @@ in {
starship starship
firefox-beta-bin firefox-beta-bin
thunderbird-bin thunderbird-bin
element-desktop fluffychat
libreoffice-qt6-fresh libreoffice-qt6-fresh
gimp gimp
vscodium git nodejs vscodium git nodejs

View File

@ -2,14 +2,12 @@
{ {
imports = [ ./fish ]; imports = [ ./fish ];
programs.pywal.enable = true;
programs.ags = { programs.ags = {
enable = true; enable = true;
extraPackages = with inputs.ags.packages.${pkgs.system}; [ extraPackages = with inputs.ags.packages.${pkgs.system}; [
apps battery bluetooth greet hyprland mpris network notifd powerprofiles tray wireplumber apps battery bluetooth greet hyprland mpris network notifd powerprofiles tray wireplumber
] ++ [ ] ++ [
pkgs.dart-sass pkgs.fzf pkgs.icon-library pkgs.fzf pkgs.icon-library
]; ];
}; };

View File

@ -16,22 +16,21 @@ in
{ {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
adw-gtk3
material-symbols material-symbols
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
bibata-cursors bibata-cursors
]; ];
sessionVariables = {
sessionVariables = {
XCURSOR_THEME = cursor-theme; XCURSOR_THEME = cursor-theme;
XCURSOR_SIZE = "24"; XCURSOR_SIZE = "24";
}; };
pointerCursor = {
pointerCursor = {
package = cursor-pkg; package = cursor-pkg;
name = cursor-theme; name = cursor-theme;
size = 24; size = 24;
gtk.enable = true; gtk.enable = true;
}; };
}; };
} }