aboutsummaryrefslogtreecommitdiffstats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-11-23 20:29:05 +0100
committersils <sils@sils.li>2023-11-23 20:29:53 +0100
commita492b1f46197cbe5352f807a3e414b800a06213a (patch)
tree9355ca91d34f8516c760e01ba47e7d35b5a21845 /flake/nixosConfigurations
parentfeat(treewide): make configured neovim available as package (diff)
downloadnix-config-a492b1f46197cbe5352f807a3e414b800a06213a.zip
feat(flake): refactor and add checks output
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r--flake/nixosConfigurations/default.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix
new file mode 100644
index 0000000..6814665
--- /dev/null
+++ b/flake/nixosConfigurations/default.nix
@@ -0,0 +1,53 @@
+{
+ self,
+ nixpkgs,
+ home-manager,
+ shell_library,
+ river_init_lesser,
+ yambar_cpu,
+ yambar_memory,
+ #grades,
+ prismlauncher,
+ lanzaboote,
+ nixvim,
+ impermanence,
+ wl-togglescreens,
+ sops-nix,
+ flake-utils,
+ agenix,
+ ragenix,
+} @ attrs: let
+ defaultModules = [
+ impermanence.nixosModules.impermanence
+ lanzaboote.nixosModules.lanzaboote
+ home-manager.nixosModules.home-manager
+ sops-nix.nixosModules.sops
+ agenix.nixosModules.default
+ {
+ home-manager = {
+ useGlobalPkgs = true;
+ useUserPackages = true;
+ users.sils = import ../../users/sils;
+ extraSpecialArgs = attrs;
+ };
+ }
+ ];
+in {
+ thinklappi = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = attrs;
+ modules =
+ [
+ ../../hosts/thinklappi
+ ]
+ ++ defaultModules;
+ };
+ thinklappi-bootstrap = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = attrs;
+ modules = [
+ ../../hosts/thinklappi-bootstrap
+ lanzaboote.nixosModules.lanzaboote
+ ];
+ };
+}