Compare commits
2 commits
9b0d344339
...
562b14535c
| Author | SHA1 | Date | |
|---|---|---|---|
| 562b14535c | |||
| dfbf4eb4e0 |
2 changed files with 30 additions and 45 deletions
73
flake.nix
73
flake.nix
|
|
@ -114,51 +114,36 @@
|
|||
}
|
||||
);
|
||||
|
||||
nixosConfigurations =
|
||||
let
|
||||
hetzner = import ./lib/hetzner.nix { inherit inputs nixpkgs; };
|
||||
in
|
||||
{
|
||||
# Workstations
|
||||
wodan = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
modules = [
|
||||
{ nixpkgs.overlays = [ overlays.additions ]; }
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
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
|
||||
];
|
||||
};
|
||||
nixosConfigurations = {
|
||||
# Workstations
|
||||
wodan = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
modules = [
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
overlays.additions
|
||||
overlays.unstable-packages
|
||||
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
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
colmenaHive =
|
||||
let
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs.unstable; [
|
||||
hledger
|
||||
hledger-ui
|
||||
hledger-utils
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue