diff --git a/home-manager/default.nix b/home-manager/default.nix index 94a9725..90f7c80 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -1,5 +1,4 @@ { - pkgs, lib, config, inputs, @@ -96,38 +95,6 @@ username = "pim"; homeDirectory = "/home/pim"; stateVersion = "23.05"; - - packages = - (with pkgs; [ - jellyfin-media-player - virt-manager - ]) - ++ (with pkgs.unstable; [ - attic-client - dbeaver-bin - devenv - bottles-unwrapped - gimp - hexchat - impression - insomnia - keepassxc - krita - libreoffice - # logseq # Has insecure electron dependency - moonlight-qt - nicotine-plus - qFlipper - signal-desktop - strawberry - telegram-desktop - vlc - vorta - wireshark - # nheko # Has insecure olm dependency - handbrake - feishin - ]); }; programs = { diff --git a/machines/gamepc/configuration.nix b/machines/gamepc/configuration.nix index 6c960de..33aa111 100644 --- a/machines/gamepc/configuration.nix +++ b/machines/gamepc/configuration.nix @@ -62,7 +62,7 @@ type = "gpt"; partitions = { primary = { - end = "-1G"; + end = "-4G"; content = { type = "filesystem"; format = "ext4"; diff --git a/machines/gamepc/default.nix b/machines/gamepc/default.nix index 4c61bdc..3786a86 100644 --- a/machines/gamepc/default.nix +++ b/machines/gamepc/default.nix @@ -1,4 +1,4 @@ { nixosModule = import ./configuration.nix; - homeManagerModule = {...}: {}; + homeManagerModule = import ./home.nix; } diff --git a/machines/gamepc/home.nix b/machines/gamepc/home.nix new file mode 100644 index 0000000..9204548 --- /dev/null +++ b/machines/gamepc/home.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + home.packages = with pkgs.unstable; [ + devenv + vlc + handbrake + ]; +} diff --git a/machines/sue/home.nix b/machines/sue/home.nix index a4366e8..935edd7 100644 --- a/machines/sue/home.nix +++ b/machines/sue/home.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs, ...}: { config = { pim = { tidal.enable = true; @@ -8,5 +8,37 @@ neovim.enable = true; firefox.enable = true; }; + + home.packages = + (with pkgs; [ + jellyfin-media-player + virt-manager + ]) + ++ (with pkgs.unstable; [ + attic-client + dbeaver-bin + devenv + bottles-unwrapped + gimp + hexchat + impression + insomnia + keepassxc + krita + libreoffice + # logseq # Has insecure electron dependency + moonlight-qt + nicotine-plus + qFlipper + signal-desktop + strawberry + telegram-desktop + vlc + vorta + wireshark + # nheko # Has insecure olm dependency + handbrake + feishin + ]); }; }