lkadkadkajds
This commit is contained in:
parent
0b3c0cbea0
commit
7e3e2ac979
|
@ -1,4 +1,7 @@
|
|||
result
|
||||
results
|
||||
result-*
|
||||
results-*
|
||||
/configuration.nix
|
||||
/hardware-configuration.nix
|
||||
.direnv
|
||||
|
|
|
@ -7,5 +7,12 @@ exclude = ["*"]
|
|||
include = [ ".sops.yaml" ]
|
||||
|
||||
[both]
|
||||
exclude = [ ".remote.toml", "result", ".direnv"]
|
||||
exclude = [
|
||||
".remote.toml",
|
||||
"result",
|
||||
"results",
|
||||
"result-*",
|
||||
"results-*",
|
||||
".direnv",
|
||||
]
|
||||
include = []
|
||||
|
|
1
base.nix
1
base.nix
|
@ -72,6 +72,7 @@
|
|||
nix.settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
"pipe-operator"
|
||||
];
|
||||
#nix.settings.allowed-users = [ "@builders" ]; # TODO: this
|
||||
nix.settings.allowed-users = [ "root" "pbsds" "@wheel" ]; # default is [ "*" ]
|
||||
|
|
|
@ -273,8 +273,7 @@
|
|||
};
|
||||
in builtins.mapAttrs (hostname: curried: curried hostname) {
|
||||
#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" [ "${nixos-hardware}/starfive/visionfive/v2/default.nix" ];
|
||||
asgaut = mk "pbsds.net" "riscv64-linux" inputs-2405 "24.05" [ hw.starfive-visionfive-2 ];
|
||||
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 ];
|
||||
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/settings.json
|
||||
#.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";
|
||||
#gb = "git blame";
|
||||
#gpo = "git push origin";
|
||||
#gpf = "git push --force-with-lease --force-if-includes";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue