Compare commits
3 commits
a5a28c31cb
...
e06a9a061e
Author | SHA1 | Date | |
---|---|---|---|
Patrick | e06a9a061e | ||
Patrick | 063a049ffc | ||
Patrick | 6d68170211 |
|
@ -32,3 +32,4 @@ This file contains a small overview over the contents and structure of this repo
|
||||||
- `wayland/` configuration for wayland windowmanagers and basic utilities
|
- `wayland/` configuration for wayland windowmanagers and basic utilities
|
||||||
- `xorg/` configuration for xorg windowmanagers and basic utilities
|
- `xorg/` configuration for xorg windowmanagers and basic utilities
|
||||||
- `root` minimal configuration for root
|
- `root` minimal configuration for root
|
||||||
|
' `patches` patche to be applied to nixpkgs before the system is built
|
||||||
|
|
|
@ -43,6 +43,9 @@ let
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
# https://github.com/nix-community/impermanence/issues/229
|
||||||
|
boot.initrd.systemd.suppressedUnits = [ "systemd-machine-id-commit.service" ];
|
||||||
|
systemd.suppressedSystemUnits = [ "systemd-machine-id-commit.service" ];
|
||||||
# to allow all users to access hm managed persistent folders
|
# to allow all users to access hm managed persistent folders
|
||||||
lib.scripts.impermanence.pruneScripts = lib.mapAttrs (k: _: prune k) config.environment.persistence;
|
lib.scripts.impermanence.pruneScripts = lib.mapAttrs (k: _: prune k) config.environment.persistence;
|
||||||
programs.fuse.userAllowOther = true;
|
programs.fuse.userAllowOther = true;
|
||||||
|
|
|
@ -6,12 +6,12 @@ if [ ! -f flake.nix ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p patches
|
mkdir -p patches/PR
|
||||||
echo "Removing old patches"
|
echo "Removing old patches"
|
||||||
rm patches/*.diff
|
rm patches/PR/*.diff
|
||||||
for t in "${PRS[@]}"; do
|
for t in "${PRS[@]}"; do
|
||||||
echo "Fetching PR #$t"
|
echo "Fetching PR #$t"
|
||||||
url="https://github.com/NixOS/nixpkgs/pull/$t"
|
url="https://github.com/NixOS/nixpkgs/pull/$t"
|
||||||
echo "$url"
|
echo "$url"
|
||||||
wcurl "$url.diff" --curl-options "--output-dir patches"
|
wcurl "$url.diff" --curl-options "--output-dir patches/PR"
|
||||||
done
|
done
|
||||||
|
|
|
@ -48,6 +48,8 @@
|
||||||
|
|
||||||
".cache/mpv"
|
".cache/mpv"
|
||||||
|
|
||||||
|
".config/Element"
|
||||||
|
|
||||||
".config/spotify"
|
".config/spotify"
|
||||||
".cache/spotify"
|
".cache/spotify"
|
||||||
".local/share/cargo"
|
".local/share/cargo"
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
zathura
|
zathura
|
||||||
zotero
|
zotero
|
||||||
bashInteractive
|
bashInteractive
|
||||||
|
element-desktop-wayland
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
hm.programs.bat.enable = true;
|
hm.programs.bat.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue