flocon/flake.nix

65 lines
1.9 KiB
Nix
Raw Normal View History

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";
};
shells = {
2024-08-27 11:01:09 +00:00
url = "path:shells";
2024-08-25 19:58:12 +00:00
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-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";
system = "x86_64-linux";
commonModules = hostname: [
2024-09-05 13:58:14 +00:00
./modules
./hosts/common
./hosts/${hostname}
2024-09-06 10:42:22 +00:00
sops-nix.nixosModules.sops
2024-09-06 13:28:06 +00:00
stylix.nixosModules.stylix
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
];
home-manager.extraSpecialArgs = { inherit inputs; };
}
{ _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
};
};
}