diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-08-09 01:21:53 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-08-09 01:21:53 -0400 |
| commit | 983bfb52a200a94b17ad280e10eeeec7683affba (patch) | |
| tree | 2e79cac1afdc640537b252a04f9af99f2bb3d968 /modules/user/desktop/default.nix | |
| parent | afc0ab72138a6058a9ca98f2cbe13c21f88daa7d (diff) | |
start rewriterefactor
Diffstat (limited to 'modules/user/desktop/default.nix')
| -rw-r--r-- | modules/user/desktop/default.nix | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/modules/user/desktop/default.nix b/modules/user/desktop/default.nix deleted file mode 100644 index 05b0cc9..0000000 --- a/modules/user/desktop/default.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - config, - lib, - options, - pkgs, - ... -}: -{ - imports = [ - ./apps - ./sessions - ]; - - config = { - gtk = { - colorScheme = "dark"; - cursorTheme = { - package = pkgs.catppuccin-cursors.mochaDark; - name = "catppuccin-mocha-dark"; - size = 24; - }; - - gtk4.theme = config.gtk.theme; - theme = { - package = pkgs.catppuccin-gtk.override { - accents = [ "mauve" ]; - variant = "mocha"; - }; - - name = "catppuccin-mocha-mauve-standard"; - }; - }; - - fonts.fontconfig.enable = true; - home.packages = with pkgs; [ - fira-code # monospace - ipaexfont # JP - nerd-fonts.fira-code # nerdfonts icons - ]; - - xdg.dataFile."wallpaper.png" = { - enable = lib.mkDefault false; - source = ./freeen.jpg; - }; - }; - - options.desktop.defaultFontSize = lib.mkOption { - default = 11.0; - description = "The default font size used by some apps"; - type = lib.types.float; - }; -} |
