aboutsummaryrefslogtreecommitdiff
path: root/home/rices/finals/home.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-04-20 11:34:55 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-04-20 11:34:55 +0200
commit8a47c7ebcd39c32e3b566d0ed1b645a82b55f9e3 (patch)
treedb45b4b7cfc664334a66c8df0ca27623fabf185e /home/rices/finals/home.nix
parenta4bc3ae3780298b2f73379812d0cad03589861cc (diff)
Add boilerplate for a niri rice (The Finals theemd)
Diffstat (limited to 'home/rices/finals/home.nix')
-rw-r--r--home/rices/finals/home.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/home/rices/finals/home.nix b/home/rices/finals/home.nix
new file mode 100644
index 0000000..253431a
--- /dev/null
+++ b/home/rices/finals/home.nix
@@ -0,0 +1,23 @@
+{pkgs, ...}: {
+ imports = [
+ ./terminal.nix
+ ./notifications.nix
+ ./fuzzel.nix
+ ./swayidle.nix
+ ./niri.nix
+ ./stylix.nix
+ ];
+
+ programs.swaylock.enable = true;
+ services.network-manager-applet.enable = true;
+
+ home.packages = with pkgs; [
+ hyprpicker
+ xwayland-satellite
+ ];
+
+ services.gpg-agent = {
+ enable = true;
+ enableSshSupport = true;
+ };
+}