Compare commits

...

2 commits

Author SHA1 Message Date
640f1a1c41 Kde/konsole: configure konsole profiles 2024-03-27 09:49:32 +01:00
7227036630 Flake: update plasma-manager 2024-03-27 09:49:06 +01:00
2 changed files with 13 additions and 3 deletions

6
flake.lock generated
View file

@ -324,11 +324,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1711295162, "lastModified": 1711527622,
"narHash": "sha256-gPTTYKvdnmaLcgOSpqtKHIf8J60J3Z4jAqXTwluxxUk=", "narHash": "sha256-UCTdFTa4tQuXHzsJUhqDuTyvA2Xu6fvMe+mGXdQhPrg=",
"owner": "pjones", "owner": "pjones",
"repo": "plasma-manager", "repo": "plasma-manager",
"rev": "8a032af55ed686ab21e60530080462a1438812b9", "rev": "fd4426851e1a4b1fe88abba78171e142102ab065",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -13,5 +13,15 @@ in {
xdg.dataFile = { xdg.dataFile = {
"konsole/Catppuccin-Mocha.colorscheme".source = catppuccinKonsole; "konsole/Catppuccin-Mocha.colorscheme".source = catppuccinKonsole;
}; };
programs.konsole = {
enable = true;
defaultProfile = "Toast.profile";
profiles.toast = {
name = "Toast";
colorScheme = "Catppuccin-Mocha";
font.name = "JetBrainsMono Nerd Font";
font.size = 10;
};
};
}; };
} }