diff --git a/flake.nix b/flake.nix index d47014f..326a515 100644 --- a/flake.nix +++ b/flake.nix @@ -50,6 +50,9 @@ specialArgs = { inherit inputs outputs; + + # colorscheme = "${inputs.catppuccin-base16}/base16/latte.yaml"; + colorscheme = "${inputs.rosepine-base16}/rose-pine-dawn.yaml"; }; in rec { diff --git a/home/adrielus/features/desktop/common/eww/widgets/eww.yuck b/home/adrielus/features/desktop/common/eww/widgets/eww.yuck index ef620ed..1b5693a 120000 --- a/home/adrielus/features/desktop/common/eww/widgets/eww.yuck +++ b/home/adrielus/features/desktop/common/eww/widgets/eww.yuck @@ -1 +1 @@ -/nix/store/jz374sz4mmsf3h7vxrxlkbcvp7vlfcyl-home-manager-files/.config/eww/eww.yuck \ No newline at end of file +/nix/store/f8zh6hv5f6d3nnm0wk6f3rkmfq6dnpg7-home-manager-files/.config/eww/eww.yuck \ No newline at end of file diff --git a/home/adrielus/features/desktop/common/wallpapers/rosepine_light_field.png b/home/adrielus/features/desktop/common/wallpapers/rosepine_light_field.png new file mode 100644 index 0000000..6915156 Binary files /dev/null and b/home/adrielus/features/desktop/common/wallpapers/rosepine_light_field.png differ diff --git a/home/adrielus/features/desktop/common/xwallpaper.nix b/home/adrielus/features/desktop/common/xwallpaper.nix index b01b159..20e6a44 100644 --- a/home/adrielus/features/desktop/common/xwallpaper.nix +++ b/home/adrielus/features/desktop/common/xwallpaper.nix @@ -3,6 +3,7 @@ let wallpapers = { "Catppuccin Latte" = ./wallpapers/wall.png; "Catppuccin Frappe" = ./wallpapers/nix-catppuccin.png; + "Rosé Pine Dawn" = ./wallpapers/rosepine_light_field.png; }; in { diff --git a/home/adrielus/global/default.nix b/home/adrielus/global/default.nix index 1e8ba0b..8275d68 100644 --- a/home/adrielus/global/default.nix +++ b/home/adrielus/global/default.nix @@ -1,4 +1,4 @@ -{ inputs, lib, pkgs, config, outputs, ... }: +{ inputs, lib, pkgs, config, outputs, colorscheme, ... }: let # Extra modules to import imports = [ @@ -40,8 +40,7 @@ in }; # Set default theme - scheme = lib.mkDefault "${inputs.catppuccin-base16}/base16/latte.yaml"; - # scheme = lib.mkDefault "${inputs.rosepine-base16}/rose-pine-dawn.yaml"; + scheme = lib.mkDefault colorscheme; # Set reasonable defaults for some settings home = { diff --git a/hosts/nixos/common/global/default.nix b/hosts/nixos/common/global/default.nix index 63d0255..e185aff 100644 --- a/hosts/nixos/common/global/default.nix +++ b/hosts/nixos/common/global/default.nix @@ -1,5 +1,5 @@ # Configuration pieces included on all (nixos) hosts -{ inputs, outputs, lib, ... }: { +{ inputs, outputs, lib, colorscheme, ... }: { imports = [ inputs.agenix.nixosModule inputs.base16.nixosModule @@ -16,7 +16,7 @@ "/etc/ssh/ssh_host_ed25519_key" ]; - scheme = lib.mkDefault "${inputs.catppuccin-base16}/base16/latte.yaml"; + scheme = lib.mkDefault colorscheme; nixpkgs = { # Add all overlays defined in the overlays directory