2023-08-23 07:30:15 +02:00
|
|
|
{
|
2023-07-01 09:48:31 +02:00
|
|
|
description = "NixOS System Config";
|
|
|
|
inputs = {
|
2023-08-25 12:07:54 +02:00
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
2023-08-27 12:35:58 +02:00
|
|
|
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
2023-08-25 12:07:54 +02:00
|
|
|
home-manager.url = "github:nix-community/home-manager/master";
|
2023-08-23 07:30:15 +02:00
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
2023-08-25 12:07:54 +02:00
|
|
|
lanzaboote.url = "github:nix-community/lanzaboote";
|
2023-08-23 07:30:15 +02:00
|
|
|
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
2023-08-25 12:07:54 +02:00
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
|
|
|
doom-emacs.url = "github:nix-community/nix-doom-emacs";
|
2023-07-01 09:48:31 +02:00
|
|
|
};
|
2023-08-23 07:30:15 +02:00
|
|
|
outputs = {
|
2023-08-27 12:35:58 +02:00
|
|
|
self, nixpkgs, nixpkgs-wayland, home-manager, lanzaboote, nur, sops-nix, doom-emacs, ...
|
2023-08-14 07:55:14 +02:00
|
|
|
}@inputs:
|
2023-07-01 09:48:31 +02:00
|
|
|
let
|
2023-08-23 07:30:15 +02:00
|
|
|
inherit (self) outputs;
|
|
|
|
stateVersion = "unstable";
|
2023-08-24 13:52:02 +02:00
|
|
|
hmStateVersion = "23.11";
|
2023-08-23 14:41:07 +02:00
|
|
|
libx = import ./lib { inherit inputs outputs stateVersion hmStateVersion; };
|
2023-07-01 09:48:31 +02:00
|
|
|
in {
|
|
|
|
nixosConfigurations = {
|
2023-08-25 15:02:39 +02:00
|
|
|
nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; username = "albert"; desktop = "hyprland"; gpu = "intel"; };
|
2023-08-25 01:02:10 +02:00
|
|
|
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; gpu = "nvidia"; };
|
2023-08-23 07:30:15 +02:00
|
|
|
};
|
2023-08-23 15:38:35 +02:00
|
|
|
homeConfigurations = {
|
2023-08-24 02:50:14 +02:00
|
|
|
"albert@nixos-laptop" = libx.mkHome { hostname = "nixos-laptop"; username = "albert"; desktop = "hyprland"; };
|
2023-08-25 15:02:39 +02:00
|
|
|
"albert@nixos-desktop" = libx.mkHome { hostname = "nixos-desktop"; username = "albert"; desktop = "gnome"; };
|
2023-08-23 07:30:15 +02:00
|
|
|
};
|
|
|
|
};
|
2023-08-24 02:56:55 +02:00
|
|
|
}
|