summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-12 12:21:17 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-12 12:21:17 +0100
commit6d16fc183f36dee379d586d44bf5cbaa7e30019d (patch)
tree612f57022dd31a54591ff14877281d52b0b7d0ad
parent507802d8f9105e1f3eb2e248715848ad0885e984 (diff)
Added packages to mun.nix
-rwxr-xr-xmun.nix81
1 files changed, 41 insertions, 40 deletions
diff --git a/mun.nix b/mun.nix
index bc4aa6a..6887b63 100755
--- a/mun.nix
+++ b/mun.nix
@@ -3,12 +3,9 @@
lib,
pkgs,
...
-}:
-
-{
+}: {
imports = [
./modules/home/default.nix
-
];
home = {
username = "mun";
@@ -24,6 +21,8 @@
discord
spotify
openrocket
+ kicad
+
# === Utilities ===
pay-respects
zathura
@@ -34,8 +33,9 @@
tree-sitter
gcr
perl
+ gnome-disk-utility
+ syncthing
-
# === CLI Tools ===
fastfetch
bat
@@ -47,6 +47,7 @@
dwarf-fortress
dwarf-fortress-packages.themes.spacefox
tetris
+ minefair
# === Text/Document Tools ===
thunderbird
@@ -56,45 +57,45 @@
krita
aseprite
audacity
-
+
# === Network & Utilities ===
clipman
xclip
qbittorrent
- # === Gaming & Emulation ===
- godotPackages_4_5.godot
- prismlauncher
- vlc
-
- # === Creative & Editors ===
- obsidian
- vscodium
- peazip
-
- # === Wine/Compatibility ===
- wine
- bottles
- lutris
-
- # === Miscellaneous ===
- xfce.thunar
-
- # === TeX Live ===
- (texlive.combine {
- inherit (texlive) scheme-full;
- notestex = texlivePackages.notestex;
- })
-
- # === RetroArch with Cores ===
- (retroarch.withCores (cores: with cores; [
- fceumm
- mgba
- gambatte
- sameboy
- ]))
-
- ];
+ # === Gaming & Emulation ===
+ godotPackages_4_5.godot
+ prismlauncher
+ vlc
+
+ # === Creative & Editors ===
+ obsidian
+ vscodium
+ peazip
+
+ # === Wine/Compatibility ===
+ wine
+ bottles
+ lutris
+
+ # === Miscellaneous ===
+ xfce.thunar
+
+ # === TeX Live ===
+ (texlive.combine {
+ inherit (texlive) scheme-full;
+ notestex = texlivePackages.notestex;
+ })
+
+ # === RetroArch with Cores ===
+ (retroarch.withCores (cores:
+ with cores; [
+ fceumm
+ mgba
+ gambatte
+ sameboy
+ ]))
+ ];
sessionVariables = {
EDITOR = "nvim";
@@ -129,7 +130,7 @@
oh-my-zsh = {
enable = true;
- plugins = [ "git" ];
+ plugins = ["git"];
theme = "simple";
};