Compare commits
5 commits
7513e6d1cf
...
8951234504
Author | SHA1 | Date | |
---|---|---|---|
8951234504 | |||
9bf7370584 | |||
d1f0a93fa7 | |||
cbc6ea3ebf | |||
53c4c7c191 |
2 changed files with 11 additions and 9 deletions
|
@ -26,7 +26,8 @@ in {
|
|||
};
|
||||
|
||||
stylix =
|
||||
{
|
||||
(import "${inputs.self}/stylix.nix" {inherit pkgs;})
|
||||
// {
|
||||
iconTheme = {
|
||||
package = pkgs.kora-icon-theme;
|
||||
dark = "kora";
|
||||
|
@ -34,11 +35,10 @@ in {
|
|||
};
|
||||
|
||||
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
|
||||
}
|
||||
// import "${inputs.self}/stylix.nix" {inherit pkgs;};
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
home.packages = lib.mkIf (!(is-darwin system)) (with pkgs; [
|
||||
kora-icon-theme
|
||||
];
|
||||
]);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,14 +13,16 @@ in {
|
|||
marleyos = {
|
||||
isDesktop = true;
|
||||
|
||||
appearance.base = enabled;
|
||||
|
||||
programs = {
|
||||
cli = enabled;
|
||||
journalctl = disabled;
|
||||
systemctl = disabled;
|
||||
journalctl = lib.mkForce disabled;
|
||||
systemctl = lib.mkForce disabled;
|
||||
|
||||
tui = enabled;
|
||||
cava = disabled;
|
||||
ncmpcpp = disabled;
|
||||
cava = lib.mkForce disabled;
|
||||
ncmpcpp = lib.mkForce disabled;
|
||||
|
||||
wezterm = enabled;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue