mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: add much required NixOS stuff
This commit is contained in:
parent
a1d954f29a
commit
e29aa76eac
47 changed files with 1324 additions and 72 deletions
|
|
@ -77,7 +77,15 @@
|
|||
];
|
||||
builder =
|
||||
{
|
||||
nixos = inputs.nixpkgs.lib.nixosSystem;
|
||||
nixos = let
|
||||
lib = inputs.nixpkgs.lib.extend (self: super: import (inputs.arcexprs + "/lib") {
|
||||
inherit super;
|
||||
lib = self;
|
||||
isOverlayLib = true;
|
||||
});
|
||||
in args: lib.nixosSystem ({
|
||||
inherit lib;
|
||||
} // args);
|
||||
darwin = inputs.darwin.lib.darwinSystem;
|
||||
macos = inputs.darwin.lib.darwinSystem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
_: let
|
||||
hostConfig = {tree, ...}: {
|
||||
imports = with tree; [
|
||||
nixos.gnome
|
||||
nixos.gui
|
||||
kat.gui
|
||||
];
|
||||
|
||||
fileSystems = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue