Compare commits

..

No commits in common. "25024f7fbd5c9a052567c667293f9e37e1bd381a" and "33aadaaecda17d3fd472507551974a3e6158ac22" have entirely different histories.

4 changed files with 69 additions and 35 deletions

View file

@ -1,11 +0,0 @@
{
meta.name = "amarth-services";
inventory = {
machines = {
"test-darwin-machine" = {
machineClass = "darwin";
};
};
};
}

View file

@ -1,12 +0,0 @@
{
perSystem = { pkgs, inputs', ... }: {
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
bash
sops
inputs'.clan-core.packages.clan-cli
];
};
};
}

42
flake.lock generated
View file

@ -56,6 +56,24 @@
"url": "https://git.clan.lol/clan/data-mesher/archive/main.tar.gz" "url": "https://git.clan.lol/clan/data-mesher/archive/main.tar.gz"
} }
}, },
"devshell": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1741473158,
"narHash": "sha256-kWNaq6wQUbUMlPgw8Y+9/9wP0F8SHkjy24/mN3UAppg=",
"owner": "numtide",
"repo": "devshell",
"rev": "7c9e793ebe66bcba8292989a68c0419b737a22a0",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "devshell",
"type": "github"
}
},
"disko": { "disko": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -147,6 +165,22 @@
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": {
"lastModified": 1722073938,
"narHash": "sha256-OpX0StkL8vpXyWOGUD6G+MA26wAXK6SpT94kLJXo6B4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e36e9f57337d0ff0cf77aceb58af4c805472bfae",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1757745802, "lastModified": 1757745802,
"narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=",
@ -165,8 +199,9 @@
"root": { "root": {
"inputs": { "inputs": {
"clan-core": "clan-core", "clan-core": "clan-core",
"devshell": "devshell",
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs_2",
"systems": "systems_2" "systems": "systems_2"
} }
}, },
@ -216,9 +251,8 @@
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-systems", "id": "systems",
"repo": "default", "type": "indirect"
"type": "github"
} }
}, },
"treefmt-nix": { "treefmt-nix": {

View file

@ -15,22 +15,24 @@
inputs.flake-parts.follows = "flake-parts"; inputs.flake-parts.follows = "flake-parts";
}; };
systems = { devshell = {
url = "github:nix-systems/default"; url = "github:numtide/devshell";
}; };
}; };
outputs = outputs =
inputs@{ flake-parts, clan-core, systems, ... }: inputs@{ flake-parts, systems, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: { flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: {
systems = import systems; systems = [
"x86_64-linux"
];
imports = [ imports = [
flake-parts.flakeModules.modules flake-parts.flakeModules.modules
clan-core.flakeModules.default inputs.clan-core.flakeModules.default
clan-core.flakeModules.testModule inputs.clan-core.flakeModules.testModule
inputs.devshell.flakeModule
./devShells/flake-module.nix
./clanServices/flake-module.nix ./clanServices/flake-module.nix
]; ];
@ -38,6 +40,27 @@
modules = {}; modules = {};
}; };
clan = import ./clan.nix; clan = {
meta.name = "amarth-services";
inventory = {
machines = {
"test-darwin-machine" = {
machineClass = "darwin";
};
};
};
};
perSystem = { system, pkgs, ... }: {
devshells = {
default = {
packages = [
pkgs.just
inputs.clan-core.packages.${system}.clan-cli
];
};
};
};
}); });
} }