summaryrefslogtreecommitdiff
path: root/home/ebisu/shared/system/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:22:25 -0700
committerFuwn <[email protected]>2024-10-23 03:22:25 -0700
commit5da05d40ecce5d6b70af5d7fedbec2f706fab597 (patch)
tree54b5418c3440e6a5a68cbff62546cd4cc3139195 /home/ebisu/shared/system/default.nix
parenthome: move encryption subset to shared (diff)
downloadnixos-config-5da05d40ecce5d6b70af5d7fedbec2f706fab597.tar.xz
nixos-config-5da05d40ecce5d6b70af5d7fedbec2f706fab597.zip
home: move system subset to shared
Diffstat (limited to 'home/ebisu/shared/system/default.nix')
-rw-r--r--home/ebisu/shared/system/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/ebisu/shared/system/default.nix b/home/ebisu/shared/system/default.nix
new file mode 100644
index 0000000..88787f2
--- /dev/null
+++ b/home/ebisu/shared/system/default.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ./fonts
+ ./encryption.nix
+ ];
+
+ home.packages = with pkgs; [
+ gnome-logs
+ procs
+ ];
+}