aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-12 13:22:29 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-12 13:23:58 -0800
commit60da6bc47620681b557ea2d105df87b22382efcd (patch)
tree000a2c858a5bbcd9d0e9ed1c5bd57546420f65d0 /users/fcuny/desktop/default.nix
parenthome-manager: last typo (diff)
downloadinfra-60da6bc47620681b557ea2d105df87b22382efcd.tar.gz
home-manager: re-organize configuration for myself
Diffstat (limited to 'users/fcuny/desktop/default.nix')
-rw-r--r--users/fcuny/desktop/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix
new file mode 100644
index 0000000..9f0bcf3
--- /dev/null
+++ b/users/fcuny/desktop/default.nix
@@ -0,0 +1,20 @@
+{ config, lib, pkgs, ... }:
+
+{
+ imports = [
+ ./browser.nix
+ ./i3.nix
+ ./media.nix
+ ./pass.nix
+ ./terminal.nix
+ ./gtk.nix
+ ./xdg.nix
+ ];
+
+ home.packages = [
+ pkgs.gnome3.eog
+ pkgs.gnome3.evince
+ pkgs.gnome3.nautilus
+ pkgs.transmission-remote-gtk
+ ];
+}