lkadkadkajds
This commit is contained in:
parent
0b3c0cbea0
commit
7e3e2ac979
|
@ -1,4 +1,7 @@
|
||||||
result
|
result
|
||||||
|
results
|
||||||
|
result-*
|
||||||
|
results-*
|
||||||
/configuration.nix
|
/configuration.nix
|
||||||
/hardware-configuration.nix
|
/hardware-configuration.nix
|
||||||
.direnv
|
.direnv
|
||||||
|
|
|
@ -7,5 +7,12 @@ exclude = ["*"]
|
||||||
include = [ ".sops.yaml" ]
|
include = [ ".sops.yaml" ]
|
||||||
|
|
||||||
[both]
|
[both]
|
||||||
exclude = [ ".remote.toml", "result", ".direnv"]
|
exclude = [
|
||||||
|
".remote.toml",
|
||||||
|
"result",
|
||||||
|
"results",
|
||||||
|
"result-*",
|
||||||
|
"results-*",
|
||||||
|
".direnv",
|
||||||
|
]
|
||||||
include = []
|
include = []
|
||||||
|
|
1
base.nix
1
base.nix
|
@ -72,6 +72,7 @@
|
||||||
nix.settings.experimental-features = [
|
nix.settings.experimental-features = [
|
||||||
"nix-command"
|
"nix-command"
|
||||||
"flakes"
|
"flakes"
|
||||||
|
"pipe-operator"
|
||||||
];
|
];
|
||||||
#nix.settings.allowed-users = [ "@builders" ]; # TODO: this
|
#nix.settings.allowed-users = [ "@builders" ]; # TODO: this
|
||||||
nix.settings.allowed-users = [ "root" "pbsds" "@wheel" ]; # default is [ "*" ]
|
nix.settings.allowed-users = [ "root" "pbsds" "@wheel" ]; # default is [ "*" ]
|
||||||
|
|
|
@ -273,8 +273,7 @@
|
||||||
};
|
};
|
||||||
in builtins.mapAttrs (hostname: curried: curried hostname) {
|
in builtins.mapAttrs (hostname: curried: curried hostname) {
|
||||||
#hostname "domain" "system" inputs "state" [ modules ... ]
|
#hostname "domain" "system" inputs "state" [ modules ... ]
|
||||||
/* asgaut = mk "pbsds.net" "riscv64-linux" inputs-2405 "24.05" [ hw.starfive-visionfive-2 ]; */
|
asgaut = mk "pbsds.net" "riscv64-linux" inputs-2405 "24.05" [ hw.starfive-visionfive-2 ];
|
||||||
asgaut = mk "pbsds.net" "riscv64-linux" inputs-2405 "24.05" [ "${nixos-hardware}/starfive/visionfive/v2/default.nix" ];
|
|
||||||
noximilien = mk "pbsds.net" "x86_64-linux" inputs-2405 "23.11" [ au tse intel ];
|
noximilien = mk "pbsds.net" "x86_64-linux" inputs-2405 "23.11" [ au tse intel ];
|
||||||
brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2405 "24.05" [ au amd nspawn ];
|
brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2405 "24.05" [ au amd nspawn ];
|
||||||
nord = mk "pbsds.net" "x86_64-linux" inputs-2405 "24.05" [ au ts intel-novga hw.common-gpu-intel-sandy-bridge rocm hidpi ];
|
nord = mk "pbsds.net" "x86_64-linux" inputs-2405 "24.05" [ au ts intel-novga hw.common-gpu-intel-sandy-bridge rocm hidpi ];
|
||||||
|
|
|
@ -11,5 +11,6 @@
|
||||||
#.config/zed/keymap.json
|
#.config/zed/keymap.json
|
||||||
#.config/zed/settings.json
|
#.config/zed/settings.json
|
||||||
#.config/zed/themes
|
#.config/zed/themes
|
||||||
|
# https://github.com/adorabilis/melange-zed
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
gbrm = "git fetch origin; git branch --merged | cut -c3- | grep -vE '^(main|master)$' | gum choose --no-limit --header 'Which branches to delete:' | xargs git branch -D";
|
gbrm = "git fetch origin; git branch --merged | cut -c3- | grep -vE '^(main|master)$' | gum choose --no-limit --header 'Which branches to delete:' | xargs git branch -D";
|
||||||
#gb = "git blame";
|
#gb = "git blame";
|
||||||
#gpo = "git push origin";
|
#gpo = "git push origin";
|
||||||
|
#gpf = "git push --force-with-lease --force-if-includes";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue