aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/desktop.nix')
-rw-r--r--users/fcuny/desktop.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/users/fcuny/desktop.nix b/users/fcuny/desktop.nix
deleted file mode 100644
index b1f4caa..0000000
--- a/users/fcuny/desktop.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- xdg.enable = true;
-
- xdg.userDirs = {
- enable = true;
- createDirectories = true;
- desktop = "\$HOME/documents";
- documents = "\$HOME/documents";
- download = "\$HOME/downloads";
- music = "\$HOME/media/music";
- pictures = "\$HOME/media/pictures";
- publicShare = "\$HOME/documents/public";
- templates = "\$HOME/documents/templates";
- videos = "\$HOME/media/videos";
- };
-
- # This is required for the gtk configuration below
- home.packages = [
- pkgs.gnome3.dconf
- ];
-
- gtk = {
- enable = true;
- theme.name = "Adwaita";
- iconTheme = {
- name = "Adwaita";
- package = pkgs.gnome3.adwaita-icon-theme;
- };
-
- gtk2 = {
- extraConfig = ''
- gtk-application-prefer-dark-theme = true
- gtk-xft-antialias = 1
- gtk-xft-hinting = 1
- gtk-xft-hintstyle = "hintslight"
- gtk-cursor-theme-size = cursorSize
- '';
- };
-
- gtk3 = {
- extraConfig = {
- gtk-application-prefer-dark-theme = true;
- gtk-xft-antialias = 1;
- gtk-xft-hinting = 1;
- gtk-xft-hintstyle = "hintslight";
- };
- };
- };
-
- imports = [
- ./i3.nix
- ./media.nix
- ./terminal.nix
- ];
-}