Compare commits

...

3 Commits

Author SHA1 Message Date
Sweetbread 24f013c765 refactor: move utils to a separate file 2025-04-18 02:52:44 +03:00
Sweetbread a84a509cf8 pkgs: add krita and gimp 2025-04-18 02:46:26 +03:00
Sweetbread df54654750 fix: wallpapers 2025-04-18 02:46:26 +03:00
4 changed files with 14 additions and 4 deletions
+2
View File
@@ -4,5 +4,7 @@ lib.mkIf (!host.laptop) {
home.packages = with pkgs-fixed; [
(blender.override { cudaSupport = true; })
aseprite
krita
gimp
];
}
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
burpsuite
binwalk
exiftool
];
}
+4 -3
View File
@@ -1,10 +1,11 @@
{ pkgs, pkgs-fixed, host, ... }: {
imports = [
../../modules/user/packages/cs_utils.nix
];
disabledModules = [ ../../modules/user/packages/coding.nix ];
home.packages = with pkgs; [
nautilus
burpsuite
binwalk
exiftool
python3
pkgs-fixed.jetbrains.pycharm-community
];
+1 -1
View File
@@ -2,7 +2,7 @@
stylix = {
enable = true;
targets = {
hyprland.enable = true;
hyprpaper.enable = lib.mkForce false;
waybar.enable = false;
kitty.variant256Colors = true;
};