Regenerated

This commit is contained in:
2026-05-05 11:13:10 +02:00
parent 36303f5990
commit bbbee5efab
41 changed files with 2077 additions and 492 deletions
@@ -0,0 +1,38 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ pkgs, lib, config, flakeRoot, quickshell, ... }:
let
username = config.defaultUser or "henrov";
sysName = "quickshell";
assetPath = "${flakeRoot}/generated/.config/${sysName}";
quickshellPkg = quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
environment.systemPackages = with pkgs; [
quickshellPkg
qt6.qtdeclarative
qt6.qttools
qt6.qtsvg
qt6.qtimageformats
qt6.qtmultimedia
qt6.qt5compat
];
qt = {
enable = true;
platformTheme = "qt5ct";
};
home-manager.users.${username} = {
home.activation.quickshellMutableFiles = {
after = [ "writeBoundary" ];
before = [];
data = ''
rm -rf $HOME/.config/${sysName}
mkdir -p $HOME/.config/${sysName}
cp -r ${assetPath}/* $HOME/.config/${sysName}/
chmod -R u+w $HOME/.config/${sysName}/
find $HOME/.config/${sysName}/ -name "*.sh" -exec chmod +x {} \;
'';
};
};
}