mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
ref(nix): lib.nix
This commit is contained in:
parent
1df7fc9594
commit
66f6c5a702
2 changed files with 10 additions and 17 deletions
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
outputs = {...} @ inputs: let
|
||||
inherit (import ./lib.nix inputs) makeOSFor makeHMFor;
|
||||
inherit (import ./lib.nix inputs) mkNixOS mkHomeManager;
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
nixie = makeOSFor {
|
||||
nixie = mkNixOS {
|
||||
hostname = "nixie";
|
||||
system = "x86_64-linux";
|
||||
extraSettings = {
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
};
|
||||
|
||||
homeConfigurations = {
|
||||
"macOS" = makeHMFor {
|
||||
"macOS" = mkHomeManager {
|
||||
hostname = "macOS";
|
||||
system = "aarch64-darwin";
|
||||
extraSettings = {
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
};
|
||||
};
|
||||
|
||||
"pi4" = makeHMFor {
|
||||
"pi4" = mkHomeManager {
|
||||
hostname = "pi4";
|
||||
system = "aarch64-linux";
|
||||
};
|
||||
|
||||
"oracle" = makeHMFor {
|
||||
"oracle" = mkHomeManager {
|
||||
hostname = "oracle";
|
||||
system = "aarch64-linux";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue