mirror of
https://github.com/materusPL/nixos-config
synced 2026-06-18 16:37:21 +02:00
23 lines
463 B
Nix
23 lines
463 B
Nix
let
|
|
flake-compatish = import (
|
|
builtins.fetchTree {
|
|
type = "github";
|
|
owner = "lillecarl";
|
|
repo = "flake-compatish";
|
|
ref = "main";
|
|
}
|
|
);
|
|
|
|
flake = flake-compatish {
|
|
source = ./.;
|
|
overrides = {
|
|
self = ./.;
|
|
materus-inputs = ./nix-config/subflake;
|
|
materus-inputs-unstable = ./nix-config/subflake;
|
|
};
|
|
};
|
|
in
|
|
flake.impure
|
|
|
|
# sudo -i nixos-rebuild switch --file . --attr nixosConfigurations.${HOSTNAME}
|