diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-24 13:57:44 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-24 13:57:44 +0100 |
| commit | 640794a741177bb0bb1a0d161eb743f2bfed73ca (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /mun.nix | |
| parent | c4af2e03eb09a9b6566da1fd0c8be3e341e97463 (diff) | |
Removed everything
Diffstat (limited to 'mun.nix')
| -rwxr-xr-x | mun.nix | 146 |
1 files changed, 0 insertions, 146 deletions
diff --git a/mun.nix b/mun.nix deleted file mode 100755 index 80e927e..0000000 --- a/mun.nix +++ /dev/null @@ -1,146 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: { - imports = [ - ./modules/home/default.nix - ]; - home = { - username = "mun"; - homeDirectory = "/home/mun"; - stateVersion = "25.11"; - - packages = with pkgs; [ - # === Development Tools === - clippy - ruff - - # === Applications === - discord - spotify - openrocket - kicad - - # === Utilities === - pay-respects - zathura - ripgrep - fd - git - lazygit - tree-sitter - gcr - perl - gnome-disk-utility - syncthing - - # === CLI Tools === - fastfetch - bat - tealdeer - claude-code - - # === Fun Stuff === # - peaclock - kdePackages.kdenlive - dwarf-fortress - dwarf-fortress-packages.themes.spacefox - tetris - minefair - - # === Text/Document Tools === - thunderbird - libreoffice - texstudio - zathura - 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 - ])) - ]; - - sessionVariables = { - EDITOR = "nvim"; - VISUAL = "nvim"; - }; - }; - - programs = { - ssh = { - enable = true; - matchBlocks = { - "*" = { - addKeysToAgent = "yes"; - forwardAgent = false; # or true if you actually need it - }; - "cgit" = { - user = "git"; - hostname = "cgit"; # tailscale MagicDNS name - identityFile = "~/.ssh/cgit"; - }; - }; - }; - - zsh = { - enable = true; - syntaxHighlighting.enable = true; - - shellAliases = { - ll = "ls -l"; - rebuild = "sudo nixos-rebuild switch"; - edit = "sudo vi /etc/nixos/configuration.nix"; - }; - - history.size = 10000; - - oh-my-zsh = { - enable = true; - plugins = ["git"]; - theme = "simple"; - }; - - initContent = '' - fastfetch --config examples/9.jsonc - ''; - }; - }; -} |
