feat: pywal support
This commit is contained in:
parent
2c3a604bbd
commit
f663b86a4a
@ -1,21 +1,27 @@
|
|||||||
{
|
{
|
||||||
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" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
nixpkgs.config.allowUnfree = true;
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
dates = "weekly";
|
||||||
|
options = "--delete-old";
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [
|
nixpkgs.config.allowUnfree = true;
|
||||||
{
|
|
||||||
device = "/swap";
|
swapDevices = [
|
||||||
size = 8192;
|
{
|
||||||
}
|
device = "/swap";
|
||||||
];
|
size = 8192;
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
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.fzf pkgs.icon-library
|
pkgs.dart-sass pkgs.fzf pkgs.icon-library
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -16,21 +16,22 @@ 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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user