diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2026-03-26 10:33:03 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2026-03-26 10:33:03 -0600 |
| commit | c0be2affd593a8e5c2abdf6ab2c56bdba3e46b14 (patch) | |
| tree | 748f5f1baf673836cd9f290bb1249cead8264245 /home-manager | |
| parent | 644d8f2fa8d3511c372655311ec7a18c598f4dba (diff) | |
move gaming packages out of work computer
Diffstat (limited to 'home-manager')
| -rw-r--r-- | home-manager/gaming.nix | 42 | ||||
| -rw-r--r-- | home-manager/home.nix | 11 | ||||
| -rw-r--r-- | home-manager/tiling-wm.nix | 1 |
3 files changed, 43 insertions, 11 deletions
diff --git a/home-manager/gaming.nix b/home-manager/gaming.nix new file mode 100644 index 0000000..ffd4182 --- /dev/null +++ b/home-manager/gaming.nix @@ -0,0 +1,42 @@ +{ config, pkgs, ... }: +# let +# home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"; +# unstable = import <nixpkgs-unstable>{}; +# in +{ + imports = [ + ./home.nix + ]; + + # home-manager.users.defin= { + home = { + # Home Manager needs a bit of information about you and the paths it should + # manage. + username = "defin"; + homeDirectory = "/home/defin"; + + # The home.packages option allows you to install Nix packages into your + # environment. + packages = with pkgs; [ + # # It is sometimes useful to fine-tune packages, for example, by applying + # # overrides. You can do that directly here, just don't forget the + # # parentheses. Maybe you want to install Nerd Fonts with a limited number of + # # fonts? + # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) + + r2modman + marble-marcher-ce + prismlauncher + luanti + lutris + heroic + wineWowPackages.waylandFull + + element-desktop + signal + ]; + + # Let Home Manager install and manage itself. + # home-manager.enable = true; + }; +} diff --git a/home-manager/home.nix b/home-manager/home.nix index a13e62c..313148e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -44,10 +44,6 @@ passExtensions.pass-audit passExtensions.pass-otp passExtensions.pass-update - r2modman - marble-marcher-ce - prismlauncher - luanti firefox libreoffice # google-chrome @@ -66,19 +62,12 @@ kdePackages.filelight easyeffects mpv - lutris - # wine - wineWowPackages.waylandFull # unstable.yt-dlp yt-dlp # telegram-desktop obsidian zettlr - element-desktop - discord signal-desktop - lutris - heroic # texlive-combined-full obs-studio # for recording or streaming waybar diff --git a/home-manager/tiling-wm.nix b/home-manager/tiling-wm.nix index be64d08..e2053fe 100644 --- a/home-manager/tiling-wm.nix +++ b/home-manager/tiling-wm.nix @@ -1,6 +1,7 @@ { pkgs, hyprland-plugins, ... }: { imports = [ ./home.nix + ./gaming.nix ../modules/home-manager/waybar.nix ../modules/home-manager/swaylock.nix ../modules/home-manager/swayidle.nix |
