fixes
This commit is contained in:
parent
22fecee528
commit
07893685e2
3 changed files with 28 additions and 19 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }:
|
||||
{ inputs, ... }:
|
||||
{
|
||||
flake.modules.nixos.desktop =
|
||||
{ pkgs, ... }:
|
||||
|
|
@ -31,14 +31,22 @@
|
|||
defaultFonts.monospace = [ "VictorMono Nerd Font Mono" ];
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 24;
|
||||
home-manager.sharedModules = [
|
||||
inputs.self.modules.homeManager.desktop
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
flake.modules.homeManager.desktop =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 24;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# TODO: Persist ~/.config/cosmic after setup
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue