Compare commits

..

4 commits

Author SHA1 Message Date
b7a9debd3b Common/fish: enable catppuccin 2024-06-09 20:09:15 +02:00
4f61147f8d Common: set catppuccin accent 2024-06-09 20:09:15 +02:00
7e3da29f97 Flake: update catppuccin
I had to change flavour into flavor in the configs
2024-06-09 20:09:15 +02:00
5f99d8a0f4 Revert "Flake: pin catppucin input"
This reverts commit 8d8b118b36.

Revert "Flake: actually downgrade catppuccin input"

This reverts commit aeed860735.
2024-06-09 20:09:15 +02:00
4 changed files with 11 additions and 7 deletions

7
flake.lock generated
View file

@ -25,17 +25,16 @@
}, },
"catppuccin": { "catppuccin": {
"locked": { "locked": {
"lastModified": 1713895615, "lastModified": 1717565621,
"narHash": "sha256-SVkxhcL0/IN5fNI2dqr702wXOnzktsm0LCEVGRAJQcY=", "narHash": "sha256-uU6GeSbzopVcPga+Fy5n3tKfzUhuw4FVMv7h61/13XY=",
"owner": "catppuccin", "owner": "catppuccin",
"repo": "nix", "repo": "nix",
"rev": "a48e70a31616cb63e4794fd3465bff1835cc4246", "rev": "0cdfa29b902976fc2941468d326325d24e148437",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "catppuccin", "owner": "catppuccin",
"repo": "nix", "repo": "nix",
"rev": "a48e70a31616cb63e4794fd3465bff1835cc4246",
"type": "github" "type": "github"
} }
}, },

View file

@ -67,7 +67,7 @@
nur.url = "github:nix-community/NUR"; nur.url = "github:nix-community/NUR";
catppuccin.url = "github:catppuccin/nix/a48e70a31616cb63e4794fd3465bff1835cc4246"; catppuccin.url = "github:catppuccin/nix";
}; };
outputs = {...} @ inputs: outputs = {...} @ inputs:

View file

@ -95,7 +95,10 @@
) )
]; ];
catppuccin.flavour = "mocha"; catppuccin = {
flavor = "mocha";
accent = "mauve";
};
home-manager = { home-manager = {
backupFileExtension = "hm-backup"; backupFileExtension = "hm-backup";
@ -103,7 +106,8 @@
verbose = true; verbose = true;
sharedModules = [flakeSelf.inputs.catppuccin.homeManagerModules.catppuccin]; sharedModules = [flakeSelf.inputs.catppuccin.homeManagerModules.catppuccin];
users.toast = {osConfig, ...}: { users.toast = {osConfig, ...}: {
catppuccin.flavour = osConfig.catppuccin.flavour; catppuccin.flavor = osConfig.catppuccin.flavor;
catppuccin.accent = osConfig.catppuccin.accent;
home.stateVersion = "24.05"; home.stateVersion = "24.05";
xdg = { xdg = {
enable = true; enable = true;

View file

@ -6,6 +6,7 @@
home-manager.users.toast = { home-manager.users.toast = {
programs.fish = { programs.fish = {
enable = true; enable = true;
catppuccin.enable = true;
}; };
}; };
} }