summaryrefslogtreecommitdiff
path: root/home/mun
diff options
context:
space:
mode:
Diffstat (limited to 'home/mun')
-rw-r--r--home/mun/default.nix125
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";
- };
- };
-}