about summary refs log tree commit diff
path: root/users/fcuny/desktop/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
commit1125aaa49aec6a220fd3b9d03076fec398b35a14 (patch)
tree5570b0c094ead9d7879ca3d360ff3de7f45d4516 /users/fcuny/desktop/default.nix
parentdelete all CLI modules (diff)
downloadworld-1125aaa49aec6a220fd3b9d03076fec398b35a14.tar.gz
add a few more modules to home/ and delete stuff
Diffstat (limited to 'users/fcuny/desktop/default.nix')
-rw-r--r--users/fcuny/desktop/default.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix
deleted file mode 100644
index 7450444..0000000
--- a/users/fcuny/desktop/default.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-  imports = [
-    ./browser.nix
-    ./emacs.nix
-    ./gtk.nix
-    ./multimedia.nix
-    ./scanner-printer
-    ./syncthing.nix
-    ./terminal.nix
-    ./wm
-    ./xdg.nix
-    ./theme.nix
-  ];
-
-  base16-theme.enable = true;
-
-  home.packages = [
-    pkgs.easyeffects
-    pkgs.gnome.seahorse
-    pkgs.gnome3.eog
-    pkgs.gnome3.evince
-    pkgs.pcmanfm
-    pkgs.transmission-remote-gtk
-    pkgs.xdg-utils
-    pkgs.element-desktop
-  ];
-
-  home = {
-    sessionVariables = {
-      TERMINAL = [ "alacritty" ];
-      TERM = [ "xterm-256color" ];
-    };
-  };
-
-  systemd.user.tmpfiles.rules = [
-    # Delete files that are 90 days old
-    "d %h/.cache - - - amAM:90d -"
-    "x %h/.cache/.nobackup - - - - -"
-    # Delete files that are 1 year old
-    "d %h/downloads - - - amAM:365d -"
-    "x %h/downloads/.nobackup - - - - -"
-  ];
-}