2024-08-25 19:58:12 +00:00
|
|
|
{
|
|
|
|
description = "nezia's nixos configuration";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
nixvim = {
|
|
|
|
url = "github:nix-community/nixvim";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
sops-nix = {
|
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-06 13:28:06 +00:00
|
|
|
stylix.url = "github:danth/stylix";
|
2024-08-25 19:58:12 +00:00
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-05 13:58:14 +00:00
|
|
|
wezterm = {
|
|
|
|
url = "github:wez/wezterm/main?dir=nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-19 11:23:21 +00:00
|
|
|
zen-browser.url = "github:MarceColl/zen-browser-flake";
|
2024-08-27 22:04:10 +00:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
2024-08-25 19:58:12 +00:00
|
|
|
};
|
|
|
|
|
2024-09-06 13:28:06 +00:00
|
|
|
outputs = { nixpkgs, home-manager, nixvim, sops-nix, stylix, ... }@inputs:
|
2024-08-25 19:58:12 +00:00
|
|
|
let
|
|
|
|
username = "nezia";
|
2024-08-25 20:58:58 +00:00
|
|
|
system = "x86_64-linux";
|
|
|
|
|
|
|
|
commonModules = hostname: [
|
2024-09-05 13:58:14 +00:00
|
|
|
./modules
|
2024-09-04 23:08:58 +00:00
|
|
|
./hosts/common
|
2024-08-25 20:58:58 +00:00
|
|
|
./hosts/${hostname}
|
2024-08-27 11:22:17 +00:00
|
|
|
|
2024-09-06 10:42:22 +00:00
|
|
|
sops-nix.nixosModules.sops
|
2024-09-06 13:28:06 +00:00
|
|
|
stylix.nixosModules.stylix
|
2024-08-25 20:58:58 +00:00
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
2024-09-06 10:42:22 +00:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
nixvim.homeManagerModules.nixvim
|
|
|
|
];
|
2024-09-19 11:23:21 +00:00
|
|
|
home-manager.extraSpecialArgs = { inherit inputs system; };
|
2024-08-25 20:58:58 +00:00
|
|
|
}
|
|
|
|
{ _module.args = { inherit hostname username; }; }
|
|
|
|
];
|
2024-08-25 21:53:48 +00:00
|
|
|
|
2024-08-26 11:46:52 +00:00
|
|
|
configureSystem = hostname: homeConfig: nixpkgs.lib.nixosSystem {
|
2024-08-25 21:53:48 +00:00
|
|
|
system = system;
|
2024-09-06 13:28:06 +00:00
|
|
|
modules = commonModules hostname ++ [ { home-manager.users."${username}" = import homeConfig; } ];
|
|
|
|
specialArgs = {inherit inputs; };
|
2024-08-25 21:53:48 +00:00
|
|
|
};
|
2024-08-25 19:58:12 +00:00
|
|
|
in {
|
|
|
|
nixosConfigurations = {
|
2024-08-25 21:53:48 +00:00
|
|
|
vamos = configureSystem "vamos" ./home/laptop;
|
|
|
|
solaire = configureSystem "solaire" ./home/desktop;
|
2024-08-25 19:58:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|