add focalor

This commit is contained in:
waveringana 2025-06-01 01:27:21 -04:00
parent da440cb07a
commit 8be3e48a3c
9 changed files with 217 additions and 2 deletions

View file

@ -9,10 +9,32 @@
vscode-server.url = "github:nix-community/nixos-vscode-server";
agenix.url = "github:ryantm/agenix";
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, lix-module, vscode-server, agenix }: {
outputs = { self, nixpkgs, lix-module, vscode-server, agenix, zen-browser } @ inputs: {
nixosConfigurations = {
focalor = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; system = "x86_64-linux"; };
modules = [
./hosts/focalor
lix-module.nixosModules.default
vscode-server.nixosModules.default
agenix.nixosModules.default
({ config, pkgs, ... }: {
services.vscode-server.enable = true;
services.vscode-server.nodejsPackage = pkgs.nodejs_20;
environment.systemPackages = [ agenix.packages.x86_64-linux.default ];
})
];
};
valefar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [