mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
art stuff
This commit is contained in:
parent
eab3fbc148
commit
2bbbe18b06
2 changed files with 10 additions and 1 deletions
|
|
@ -18,6 +18,7 @@
|
|||
gaming.enable = lib.mkEnableOption "enables gaming packages";
|
||||
appdevel.enable = lib.mkEnableOption "enables app development in flutter";
|
||||
vr.enable = lib.mkEnableOption "enables VR utilities";
|
||||
art.enable = lib.mkEnableOption "enabled graphical art stuff";
|
||||
};
|
||||
|
||||
user = {
|
||||
|
|
@ -41,7 +42,7 @@
|
|||
EDITOR = "nvim";
|
||||
VISUAL = "nvim";
|
||||
};
|
||||
|
||||
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
|
||||
user = {
|
||||
|
|
@ -72,6 +73,7 @@
|
|||
gaming.enable = lib.mkDefault false;
|
||||
appdevel.enable = lib.mkDefault false;
|
||||
vr.enable = lib.mkDefault false;
|
||||
art.enable = lib.mkDefault false;
|
||||
};
|
||||
|
||||
desktop = {
|
||||
|
|
|
|||
|
|
@ -164,5 +164,12 @@
|
|||
immersed
|
||||
]
|
||||
else []
|
||||
)
|
||||
++ (
|
||||
if config.module.art.enable
|
||||
then [
|
||||
krita
|
||||
]
|
||||
else []
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue