From 5a3450fdf87bfe9267c4e9ee81a79a92602ca040 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 26 Dec 2024 21:28:31 -0500 Subject: [PATCH] Add gvfs and git-crypt. --- nix/configuration/configuration.nix | 1 + nix/configuration/flake.lock | 8 ++++---- nix/configuration/flakes/zsh-histdb/flake.lock | 6 +++--- nix/configuration/hosts/odo/default.nix | 3 +++ nix/configuration/roles/sway/default.nix | 3 +++ 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/nix/configuration/configuration.nix b/nix/configuration/configuration.nix index 6d9e79e..3eedd6a 100644 --- a/nix/configuration/configuration.nix +++ b/nix/configuration/configuration.nix @@ -122,6 +122,7 @@ ripgrep strace tcpdump + git-crypt ]; services.openssh = { diff --git a/nix/configuration/flake.lock b/nix/configuration/flake.lock index ed44628..781f930 100644 --- a/nix/configuration/flake.lock +++ b/nix/configuration/flake.lock @@ -181,11 +181,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1734991663, - "narHash": "sha256-8T660guvdaOD+2/Cj970bWlQwAyZLKrrbkhYOFcY1YE=", + "lastModified": 1735141468, + "narHash": "sha256-VIAjBr1qGcEbmhLwQJD6TABppPMggzOvqFsqkDoMsAY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6c90912761c43e22b6fb000025ab96dd31c971ff", + "rev": "4005c3ff7505313cbc21081776ad0ce5dfd7a3ce", "type": "github" }, "original": { @@ -345,7 +345,7 @@ }, "locked": { "lastModified": 1, - "narHash": "sha256-Cf8NVSnjPiAi29Df1Tb1Ea6uqISWps5nx3qJl5yAbOo=", + "narHash": "sha256-TFks1dvPwAXKQeePh9jmxj06ZfXArH1pN9yXVQWeL6w=", "path": "flakes/zsh-histdb", "type": "path" }, diff --git a/nix/configuration/flakes/zsh-histdb/flake.lock b/nix/configuration/flakes/zsh-histdb/flake.lock index a904960..fdf755d 100644 --- a/nix/configuration/flakes/zsh-histdb/flake.lock +++ b/nix/configuration/flakes/zsh-histdb/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1734991663, - "narHash": "sha256-8T660guvdaOD+2/Cj970bWlQwAyZLKrrbkhYOFcY1YE=", + "lastModified": 1735141468, + "narHash": "sha256-VIAjBr1qGcEbmhLwQJD6TABppPMggzOvqFsqkDoMsAY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6c90912761c43e22b6fb000025ab96dd31c971ff", + "rev": "4005c3ff7505313cbc21081776ad0ce5dfd7a3ce", "type": "github" }, "original": { diff --git a/nix/configuration/hosts/odo/default.nix b/nix/configuration/hosts/odo/default.nix index 723a854..147e253 100644 --- a/nix/configuration/hosts/odo/default.nix +++ b/nix/configuration/hosts/odo/default.nix @@ -14,4 +14,7 @@ time.timeZone = "America/New_York"; me.secureBoot.enable = true; + + # Early KMS + boot.initrd.kernelModules = [ "amdgpu" ]; } diff --git a/nix/configuration/roles/sway/default.nix b/nix/configuration/roles/sway/default.nix index 130ba28..982de1e 100644 --- a/nix/configuration/roles/sway/default.nix +++ b/nix/configuration/roles/sway/default.nix @@ -374,4 +374,7 @@ in }; }; }; + + # For mounting drives in pcmanfm + services.gvfs.enable = true; }