diff options
author | Patryk Niedźwiedziński <patryk@niedzwiedzinski.cyou> | 2024-06-30 12:36:23 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <patryk@niedzwiedzinski.cyou> | 2024-06-30 12:36:23 +0200 |
commit | 42fa9dfcdb6b09dd944d9e5a5b638c7eb411e175 (patch) | |
tree | 5077e0431c579e60a096b6c74db89115ba72515a | |
parent | e787c274cfec346ba1e741d0d20e5ae716162514 (diff) | |
download | dots-42fa9dfcdb6b09dd944d9e5a5b638c7eb411e175.tar.gz dots-42fa9dfcdb6b09dd944d9e5a5b638c7eb411e175.zip |
21 current 2024-06-30 12:36:17 24.05.20240626.89c4987 6.6.35 *
-rwxr-xr-x | machines/base.nix | 6 | ||||
-rw-r--r-- | machines/x220-gnome/configuration.nix | 2 | ||||
-rw-r--r-- | machines/x220-gnome/pass.nix | 10 |
3 files changed, 15 insertions, 3 deletions
diff --git a/machines/base.nix b/machines/base.nix index 035ee59..e318253 100755 --- a/machines/base.nix +++ b/machines/base.nix @@ -4,10 +4,10 @@ { imports = [ - ../modules/nur.nix - ../users/pn.nix + # ../modules/nur.nix + # ../users/pn.nix ../modules/doas.nix - ../modules/internet.nix + # ../modules/internet.nix ]; boot.cleanTmpDir = true; diff --git a/machines/x220-gnome/configuration.nix b/machines/x220-gnome/configuration.nix index 898f71e..03a4e0d 100644 --- a/machines/x220-gnome/configuration.nix +++ b/machines/x220-gnome/configuration.nix @@ -3,7 +3,9 @@ { imports = [ # Include the results of the hardware scan. + ../base.nix ./gnome.nix + ./pass.nix ./hardware-configuration.nix ]; diff --git a/machines/x220-gnome/pass.nix b/machines/x220-gnome/pass.nix new file mode 100644 index 0000000..4fb9410 --- /dev/null +++ b/machines/x220-gnome/pass.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + pkgs.pass-wayland + ]; + + environment.variables = { + PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; + }; +} |