mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-22 16:08:50 +01:00
Merge branch 'master' of git.thilo-billerbeck.com:thilobillerbeck/home-manager
This commit is contained in:
commit
e288809b98
2 changed files with 24 additions and 0 deletions
|
@ -10,6 +10,16 @@ let
|
||||||
}) {};
|
}) {};
|
||||||
in {
|
in {
|
||||||
config = {
|
config = {
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
quickemu = prev.quickemu.overrideAttrs (old: {
|
||||||
|
patches = (old.patches or []) ++ [
|
||||||
|
./../patches/quickemu.patch
|
||||||
|
];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
up
|
up
|
||||||
rbenv
|
rbenv
|
||||||
|
@ -54,6 +64,7 @@ in {
|
||||||
distrobox
|
distrobox
|
||||||
ddev
|
ddev
|
||||||
act
|
act
|
||||||
|
mkcert
|
||||||
] ++ (if config.machine.isGraphical then [
|
] ++ (if config.machine.isGraphical then [
|
||||||
(pkgs.nerdfonts.override {
|
(pkgs.nerdfonts.override {
|
||||||
fonts = [ "JetBrainsMono" "FiraCode" "FiraMono" ];
|
fonts = [ "JetBrainsMono" "FiraCode" "FiraMono" ];
|
||||||
|
|
13
patches/quickemu.patch
Normal file
13
patches/quickemu.patch
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/quickget b/quickget
|
||||||
|
index 756eb82..19998d0 100755
|
||||||
|
--- a/quickget
|
||||||
|
+++ b/quickget
|
||||||
|
@@ -2133,7 +2133,7 @@ function get_windows() {
|
||||||
|
# - https://www.itechtics.com/windows-11-download-iso/
|
||||||
|
# 0 : Prompt for a manual ISO download
|
||||||
|
# 1 : Download automatically
|
||||||
|
- local AUTO_DOWNLOAD=1
|
||||||
|
+ local AUTO_DOWNLOAD=0
|
||||||
|
local DOWNLOAD_URL=""
|
||||||
|
|
||||||
|
if [ ${AUTO_DOWNLOAD} -eq 1 ]; then
|
Loading…
Reference in a new issue