flocon/flake.nix

62 lines
1.8 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";
2024-08-27 22:04:10 +00:00
2024-08-25 19:58:12 +00:00
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
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";
};
stylix = {
url = "github:danth/stylix";
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-08-27 21:53:40 +00:00
outputs = { nixpkgs, nixos-hardware, home-manager, nixvim, sops-nix, stylix, ... }@inputs:
2024-08-25 19:58:12 +00:00
let
username = "nezia";
system = "x86_64-linux";
commonModules = hostname: [
./hosts/common
./hosts/${hostname}
sops-nix.nixosModules.sops
stylix.nixosModules.stylix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
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-08-27 21:53:40 +00:00
modules = commonModules hostname ++ [ { home-manager.users."${username}" = import homeConfig; } ]
++ (if hostname == "vamos" then [ nixos-hardware.nixosModules.framework-13-7040-amd ] else []);
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
};
};
}