diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-06-18 22:18:57 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-06-18 22:18:57 +0200 |
| commit | 04208789ab295fa1b91757435859b5efaf9092d4 (patch) | |
| tree | d2b36dd769b7326615ee7bc8aeeca30d0f21f96f /home/mun/default.nix | |
| parent | 279a218e39b6f0cfc9c31f807bc2673806b6ce1c (diff) | |
Got rid of old default
Diffstat (limited to 'home/mun/default.nix')
| -rw-r--r-- | home/mun/default.nix | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/home/mun/default.nix b/home/mun/default.nix deleted file mode 100644 index 98bb1dc..0000000 --- a/home/mun/default.nix +++ /dev/null @@ -1,125 +0,0 @@ -{pkgs, ...}: { - imports = [ - ./programs/zsh.nix - ./programs/ssh.nix - ./programs/git.nix - ./programs/nvim.nix - ./programs/nixcord.nix - ./programs/browser.nix - ./programs/rmpc.nix - ]; - - home = { - username = "mun"; - homeDirectory = "/home/mun"; - stateVersion = "25.11"; - - packages = with pkgs; [ - # Rust toolchain (via fenix) - (fenix.complete.withComponents [ - "cargo" - "clippy" - "rust-src" - "rustc" - "rustfmt" - ]) - rust-analyzer - - # Python - ruff - - # Applications - spotify - openrocket - prusa-slicer - kicad - thunderbird - signal-desktop - famistudio - tor-browser - unstable.heroic - butler - openscad - - (pkgs.writeShellScriptBin "itch" '' - exec ${pkgs.steam-run}/bin/steam-run ${pkgs.itch}/bin/itch "$@" - '') - - # Utilities - zathura - ripgrep - fd - git - lazygit - tree-sitter - gcr - perl - syncthing - sshfs - alacritty - protonup-qt - devenv - - # CLI Tools - bat - tealdeer - fastfetch - - # Fun - kdePackages.kdenlive - dwarf-fortress - tetris - minefair - - # Documents & Creative - libreoffice - texstudio - krita - aseprite - audacity - - # Network - clipman - xclip - qbittorrent - - # Gaming - prismlauncher - vlc - - # Editors - obsidian - vscodium - peazip - - # Wine/Compatibility - wine - - # File manager - xfce.thunar - - # TeX Live - (texlive.combine { - inherit (texlive) scheme-full; - notestex = texlivePackages.notestex; - screenplay = texlivePackages.screenplay; - # scpzine = pkgs.scpzine-texlive; # Commented out until i can push the fix to remote from home - }) - - # RetroArch - (retroarch.withCores (cores: - with cores; [ - fceumm - mgba - gambatte - sameboy - ])) - ]; - - sessionVariables = { - EDITOR = "nvim"; - VISUAL = "nvim"; - APPIMAGE_EXTRACT_AND_RUN = "1"; - }; - }; -} |
