diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:47:59 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:47:59 -0800 |
commit | 8ed3dfc9ebc52a50c3e6d4623204847822944422 (patch) | |
tree | 5ecaf4eb3719f6d60e471775cd6de5da7cb78b46 /users/fcuny/desktop | |
parent | configs: move personal configuration with user (diff) | |
download | world-8ed3dfc9ebc52a50c3e6d4623204847822944422.tar.gz |
move configurations and modules around
Sorry, this is a mess, hopefully the last one.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/default.nix | 15 | ||||
-rw-r--r-- | users/fcuny/desktop/gtk.nix | 4 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/default.nix | 10 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/git.nix | 8 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/keyring.nix | 5 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/pass.nix (renamed from users/fcuny/desktop/pass.nix) | 0 | ||||
-rw-r--r-- | users/fcuny/desktop/trust/pgp.nix | 14 |
7 files changed, 54 insertions, 2 deletions
diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix index 9f0bcf3..3a1e21a 100644 --- a/users/fcuny/desktop/default.nix +++ b/users/fcuny/desktop/default.nix @@ -9,6 +9,7 @@ ./terminal.nix ./gtk.nix ./xdg.nix + ./trust ]; home.packages = [ @@ -17,4 +18,18 @@ pkgs.gnome3.nautilus pkgs.transmission-remote-gtk ]; + + environment = { + sessionVariables = { + TERMINAL = [ "alacritty" ]; + TERM = [ "xterm-256color" ]; + }; + + # Activate home-manager environment, if not already enabled + loginShellInit = '' + [ -d "$HOME/.nix-profile" ] || /nix/var/nix/profiles/per-user/$USER/home-manager/activate &> /dev/null + ''; + homeBinInPath = true; + localBinInPath = true; + }; } diff --git a/users/fcuny/desktop/gtk.nix b/users/fcuny/desktop/gtk.nix index 492c331..8bc11a2 100644 --- a/users/fcuny/desktop/gtk.nix +++ b/users/fcuny/desktop/gtk.nix @@ -16,7 +16,6 @@ gtk2 = { extraConfig = '' - gtk-application-prefer-dark-theme = true gtk-xft-antialias = 1 gtk-xft-hinting = 1 gtk-xft-hintstyle = "hintslight" @@ -26,11 +25,12 @@ gtk3 = { extraConfig = { - gtk-application-prefer-dark-theme = true; gtk-xft-antialias = 1; gtk-xft-hinting = 1; gtk-xft-hintstyle = "hintslight"; }; }; }; + + services.gvfs.enable = true; } diff --git a/users/fcuny/desktop/trust/default.nix b/users/fcuny/desktop/trust/default.nix new file mode 100644 index 0000000..d881926 --- /dev/null +++ b/users/fcuny/desktop/trust/default.nix @@ -0,0 +1,10 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ./git.nix + ./keyring.nix + ./pass.nix + ./pgp.nix + ]; +} diff --git a/users/fcuny/desktop/trust/git.nix b/users/fcuny/desktop/trust/git.nix new file mode 100644 index 0000000..52607a3 --- /dev/null +++ b/users/fcuny/desktop/trust/git.nix @@ -0,0 +1,8 @@ +{ + programs.git = { + signing = { + signByDefault = true; + key = "23348B57F01D4234B5CFBA0923208AC01EB6EEA1"; + }; + }; +} diff --git a/users/fcuny/desktop/trust/keyring.nix b/users/fcuny/desktop/trust/keyring.nix new file mode 100644 index 0000000..222448a --- /dev/null +++ b/users/fcuny/desktop/trust/keyring.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + services.gnome.gnome-keyring.enable = true; +} diff --git a/users/fcuny/desktop/pass.nix b/users/fcuny/desktop/trust/pass.nix index d430ec8..d430ec8 100644 --- a/users/fcuny/desktop/pass.nix +++ b/users/fcuny/desktop/trust/pass.nix diff --git a/users/fcuny/desktop/trust/pgp.nix b/users/fcuny/desktop/trust/pgp.nix new file mode 100644 index 0000000..0d59837 --- /dev/null +++ b/users/fcuny/desktop/trust/pgp.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: + +{ + services.gpg-agent = { + enable = true; + enableSshSupport = true; + pinentryFlavor = "gnome3"; + }; + + programs.gpg = { + enable = true; + }; +} + |