From 974df19d61c82bb190459a9176cb6e62d9889e13 Mon Sep 17 00:00:00 2001 From: Bad Date: Thu, 8 Apr 2021 22:00:48 +0200 Subject: [PATCH] Install a bunch of useful packages --- profiles/three_dee/default.nix | 6 ++++++ profiles/workstation/default.nix | 3 ++- suites/default.nix | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 profiles/three_dee/default.nix diff --git a/profiles/three_dee/default.nix b/profiles/three_dee/default.nix new file mode 100644 index 0000000..726fc9f --- /dev/null +++ b/profiles/three_dee/default.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + blender + ]; +} diff --git a/profiles/workstation/default.nix b/profiles/workstation/default.nix index 2462ad7..51145c7 100644 --- a/profiles/workstation/default.nix +++ b/profiles/workstation/default.nix @@ -2,8 +2,9 @@ { environment.systemPackages = with pkgs; [ mpv - firefox-wayland + firefox nomacs libreoffice + gimp ]; } diff --git a/suites/default.nix b/suites/default.nix index 2070337..89355c5 100644 --- a/suites/default.nix +++ b/suites/default.nix @@ -3,7 +3,7 @@ system = with profiles; rec { base = [ users.mae users.root ]; workstation = base ++ [ sway develop game profiles.workstation ssh ]; - desktop = workstation ++ [ amd school ]; + desktop = workstation ++ [ amd school three_dee ]; lap = workstation ++ [ laptop bluetooth print networkmanager ]; }; user = with userProfiles; rec {