summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/system/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-14 23:22:14 -0700
committerFuwn <[email protected]>2024-09-14 23:22:14 -0700
commit03520a6ed089831a9cf7e4cd787e79a4d6891309 (patch)
treeed730e5d4cc6b816f293b7b79d1b7353744622c0 /home/ebisu/fortune/system/default.nix
parentbrowsers: use zen-browser-flake (diff)
downloadnixos-config-03520a6ed089831a9cf7e4cd787e79a4d6891309.tar.xz
nixos-config-03520a6ed089831a9cf7e4cd787e79a4d6891309.zip
system: add encryption module with seahorse
Diffstat (limited to 'home/ebisu/fortune/system/default.nix')
-rw-r--r--home/ebisu/fortune/system/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/home/ebisu/fortune/system/default.nix b/home/ebisu/fortune/system/default.nix
index 4ac260d..5657679 100644
--- a/home/ebisu/fortune/system/default.nix
+++ b/home/ebisu/fortune/system/default.nix
@@ -1,19 +1,16 @@
{ pkgs, ... }:
{
imports = [
+ ./encryption
./fonts
./shell
./terminal
./virtualisation
- ./bitwarden.nix
./peripheral.nix
./tracing.nix
./variables.nix
./xdg.nix
];
- home.packages = with pkgs; [
- libsForQt5.ksshaskpass
- gnome-logs
- ];
+ home.packages = [ pkgs.gnome-logs ];
}