Compare commits
1 commit
562b14535c
...
9b0d344339
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b0d344339 |
2 changed files with 45 additions and 30 deletions
73
flake.nix
73
flake.nix
|
|
@ -114,36 +114,51 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations =
|
||||||
# Workstations
|
let
|
||||||
wodan = nixpkgs.lib.nixosSystem {
|
hetzner = import ./lib/hetzner.nix { inherit inputs nixpkgs; };
|
||||||
specialArgs = { inherit inputs outputs; };
|
in
|
||||||
modules = [
|
{
|
||||||
{
|
# Workstations
|
||||||
nixpkgs.overlays = [
|
wodan = nixpkgs.lib.nixosSystem {
|
||||||
overlays.additions
|
specialArgs = { inherit inputs outputs; };
|
||||||
overlays.unstable-packages
|
modules = [
|
||||||
tidalcycles.overlays.default
|
{ nixpkgs.overlays = [ overlays.additions ]; }
|
||||||
];
|
{
|
||||||
}
|
nixpkgs.overlays = [
|
||||||
./hosts/wodan
|
tidalcycles.overlays.default
|
||||||
];
|
(_: prev: {
|
||||||
|
tailscale = prev.tailscale.overrideAttrs (old: {
|
||||||
|
checkFlags = builtins.map (
|
||||||
|
flag:
|
||||||
|
if prev.lib.hasPrefix "-skip=" flag then
|
||||||
|
flag + "|^TestGetList$|^TestIgnoreLocallyBoundPorts$|^TestPoller$"
|
||||||
|
else
|
||||||
|
flag
|
||||||
|
) old.checkFlags;
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{ nixpkgs.overlays = [ tidalcycles.overlays.default ]; }
|
||||||
|
./hosts/wodan
|
||||||
|
];
|
||||||
|
};
|
||||||
|
widar = nixpkgs.lib.nixosSystem {
|
||||||
|
specialArgs = { inherit inputs outputs; };
|
||||||
|
modules = [
|
||||||
|
./hosts/widar
|
||||||
|
];
|
||||||
|
};
|
||||||
|
heimdall = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
specialArgs = { inherit inputs outputs; };
|
||||||
|
modules = [
|
||||||
|
{ nixpkgs.overlays = [ overlays.additions ]; }
|
||||||
|
./hosts/heimdall
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
widar = nixpkgs.lib.nixosSystem {
|
|
||||||
specialArgs = { inherit inputs outputs; };
|
|
||||||
modules = [
|
|
||||||
./hosts/widar
|
|
||||||
];
|
|
||||||
};
|
|
||||||
heimdall = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
specialArgs = { inherit inputs outputs; };
|
|
||||||
modules = [
|
|
||||||
{ nixpkgs.overlays = [ overlays.additions ]; }
|
|
||||||
./hosts/heimdall
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
colmenaHive =
|
colmenaHive =
|
||||||
let
|
let
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs.unstable; [
|
home.packages = with pkgs; [
|
||||||
hledger
|
hledger
|
||||||
hledger-ui
|
hledger-ui
|
||||||
hledger-utils
|
hledger-utils
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue