summaryrefslogtreecommitdiff
path: root/mun.nix
diff options
context:
space:
mode:
Diffstat (limited to 'mun.nix')
-rwxr-xr-xmun.nix33
1 files changed, 17 insertions, 16 deletions
diff --git a/mun.nix b/mun.nix
index 6cb620c..7f57484 100755
--- a/mun.nix
+++ b/mun.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
{
imports = [
@@ -21,6 +26,7 @@
# === Applications ===
discord
+ spotify
# === Utilities ===
pay-respects
@@ -47,22 +53,18 @@
};
};
+ programs = {
+ ssh = {
+ enable = true;
-
-
-programs = {
- ssh = {
- enable = true;
-
- # Disable legacy defaults (future-proof)
- enableDefaultConfig = false;
+ # Disable legacy defaults (future-proof)
+ enableDefaultConfig = false;
- matchBlocks."*" = {
- addKeysToAgent = "yes";
- forwardAgent = false; # or true if you actually need it
+ matchBlocks."*" = {
+ addKeysToAgent = "yes";
+ forwardAgent = false; # or true if you actually need it
+ };
};
- };
-
zsh = {
enable = true;
@@ -90,6 +92,5 @@ programs = {
};
services = {
gnome-keyring.enable = true;
- };
+ };
}
-