mirror of
https://github.com/materusPL/nixos-config
synced 2026-02-12 16:17:21 +01:00
16 lines
299 B
Nix
16 lines
299 B
Nix
|
|
let
|
||
|
|
flake-compatish = import (
|
||
|
|
builtins.fetchTree {
|
||
|
|
type = "github";
|
||
|
|
owner = "lillecarl";
|
||
|
|
repo = "flake-compatish";
|
||
|
|
ref = "main";
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
flake = flake-compatish ./.;
|
||
|
|
in
|
||
|
|
flake.impure
|
||
|
|
|
||
|
|
# sudo -i nixos-rebuild switch --file . --attr nixosConfigurations.${HOSTNAME}
|