Separate System and User packages
- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
This commit is contained in:
8
user/media/creation.nix
Normal file
8
user/media/creation.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
blender
|
||||
obs-studio
|
||||
]);
|
||||
}
|
9
user/media/default.nix
Normal file
9
user/media/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./players.nix
|
||||
./editors.nix
|
||||
./creation.nix
|
||||
];
|
||||
}
|
9
user/media/editors.nix
Normal file
9
user/media/editors.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gimp
|
||||
libsForQt5.kdenlive
|
||||
ffmpeg
|
||||
]);
|
||||
}
|
12
user/media/players.nix
Normal file
12
user/media/players.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gnome.eog
|
||||
mpv
|
||||
trackma-gtk
|
||||
pocket-casts
|
||||
spotify
|
||||
spicetify-cli
|
||||
]);
|
||||
}
|
Reference in New Issue
Block a user