1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

helix: use nixd

This commit is contained in:
RGBCube 2025-07-21 18:19:43 +03:00
parent 4bd1ec53af
commit cb216d39f1
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
10 changed files with 27 additions and 23 deletions

View file

@ -1,7 +1,8 @@
lib: lib.nixosSystem' ({ config, keys, lib, ... }: let
inherit (lib) collectNix remove;
in {
imports = collectNix ./. |> remove ./default.nix;
imports = collectNix ./.
|> remove ./default.nix;
secrets.id.file = ./id.age;
services.openssh.hostKeys = [{

View file

@ -1,7 +1,8 @@
lib: lib.nixosSystem' ({ config, keys, lib, ... }: let
inherit (lib) collectNix remove;
in {
imports = collectNix ./. |> remove ./default.nix;
imports = collectNix ./.
|> remove ./default.nix;
secrets.id.file = ./id.age;
services.openssh.hostKeys = [{

View file

@ -1,7 +1,8 @@
lib: lib.nixosSystem' ({ config, keys, lib, ... }: let
inherit (lib) collectNix remove;
in {
imports = collectNix ./. |> remove ./default.nix;
imports = collectNix ./.
|> remove ./default.nix;
secrets.id.file = ./id.age;
services.openssh.hostKeys = [{

View file

@ -1,7 +1,8 @@
lib: lib.darwinSystem' ({ lib, ... }: let
lib: lib.darwinSystem' ({ config, lib, ... }: let
inherit (lib) collectNix remove;
in {
imports = collectNix ./. |> remove ./default.nix;
imports = collectNix ./.
|> remove ./default.nix;
type = "desktop";
@ -14,8 +15,8 @@ in {
home-manager.users.pala.home = {
stateVersion = "25.05";
homeDirectory = "/Users/pala";
homeDirectory = config.users.users.pala.home;
};
system.stateVersion = 5;
system.stateVersion = 5;
})