Compare commits

..

No commits in common. "b7a9debd3b7435d42d97893d44ecedb05c7aef91" and "45f86f522ac8ff1828c70e91969b47a0df51643a" have entirely different histories.

4 changed files with 7 additions and 11 deletions

7
flake.lock generated
View file

@ -25,16 +25,17 @@
}, },
"catppuccin": { "catppuccin": {
"locked": { "locked": {
"lastModified": 1717565621, "lastModified": 1713895615,
"narHash": "sha256-uU6GeSbzopVcPga+Fy5n3tKfzUhuw4FVMv7h61/13XY=", "narHash": "sha256-SVkxhcL0/IN5fNI2dqr702wXOnzktsm0LCEVGRAJQcY=",
"owner": "catppuccin", "owner": "catppuccin",
"repo": "nix", "repo": "nix",
"rev": "0cdfa29b902976fc2941468d326325d24e148437", "rev": "a48e70a31616cb63e4794fd3465bff1835cc4246",
"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"; catppuccin.url = "github:catppuccin/nix/a48e70a31616cb63e4794fd3465bff1835cc4246";
}; };
outputs = {...} @ inputs: outputs = {...} @ inputs:

View file

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

View file

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