new stuff

This commit is contained in:
Henry Hiles 2024-03-26 13:11:25 -04:00
parent 771f4b6317
commit ecf789b145
10 changed files with 80 additions and 76 deletions

View file

@ -1 +1 @@
{environment.localBinInPath = true;}
{environment.localBinInPath = true;}

View file

@ -1,3 +1,3 @@
{
services.flatpak.enable = true;
services.flatpak.enable = true;
}

View file

@ -1,9 +1,9 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs.gnomeExtensions; [
open-bar
caffeine
pop-shell
appindicator
search-light
blur-my-shell
just-perfection
burn-my-windows

View file

@ -1,20 +1,20 @@
{pkgs, ...}: {
environment.systemPackages = [
(pkgs.writeTextDir "share/polkit-1/actions/com.henryhiles.quados.policy" ''
<!DOCTYPE policyconfig PUBLIC '-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN' 'http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd'>
<!DOCTYPE policyconfig PUBLIC '-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN' 'http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd'>
<policyconfig>
<action id='com.henryhiles.quados.rebuild'>
<description>Rebuild</description>
<message>Authentication is required to rebuild the system</message>
<defaults>
<allow_any>auth_admin_keep</allow_any>
<allow_inactive>auth_admin_keep</allow_inactive>
<allow_active>auth_admin_keep</allow_active>
</defaults>
<annotate key='org.freedesktop.policykit.exec.path'>/run/current-system/sw/bin/flatpak</annotate>
</action>
</policyconfig>
'')
<policyconfig>
<action id='com.henryhiles.quados.rebuild'>
<description>Rebuild</description>
<message>Authentication is required to rebuild the system</message>
<defaults>
<allow_any>auth_admin_keep</allow_any>
<allow_inactive>auth_admin_keep</allow_inactive>
<allow_active>auth_admin_keep</allow_active>
</defaults>
<annotate key='org.freedesktop.policykit.exec.path'>/run/current-system/sw/bin/flatpak</annotate>
</action>
</policyconfig>
'')
];
}
}

View file

@ -5,8 +5,6 @@
}: {
programs.steam = {
enable = true;
package = pkgs.steam.override {
extraProfile = "export STEAM_EXTRA_COMPAT_TOOLS_PATHS='${inputs.nix-gaming.packages.${pkgs.system}.proton-ge}'";
};
extraCompatPackages = [pkgs.proton-ge-bin];
};
}