stuff
This commit is contained in:
parent
4f4bd5c462
commit
ca00371fea
6 changed files with 62 additions and 1 deletions
22
modules/nixos/communication/default.nix
Normal file
22
modules/nixos/communication/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, username, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
tutanota-desktop
|
||||
signal-desktop
|
||||
element-desktop
|
||||
vesktop
|
||||
];
|
||||
|
||||
environment.persistence."/nix/persist" = {
|
||||
users."${username}" = {
|
||||
directories = [
|
||||
".config/Signal"
|
||||
".config/vesktop"
|
||||
".config/tutanota-desktop"
|
||||
".config/tuta_integration"
|
||||
".config/Element"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
15
modules/nixos/multimedia/art/default.nix
Normal file
15
modules/nixos/multimedia/art/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, username, ... }:
|
||||
|
||||
{
|
||||
environment.persistence."/nix/persist" = {
|
||||
users."${username}".directories = [
|
||||
".local/share/krita"
|
||||
".config/GIMP"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
krita
|
||||
gimp
|
||||
];
|
||||
}
|
|
@ -11,7 +11,7 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
protonup-qt
|
||||
protontricks
|
||||
osu-lazer-bin
|
||||
unstable.osu-lazer-bin
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue