nixos/flake.nix

70 lines
1.9 KiB
Nix
Raw Normal View History

2024-08-04 23:45:01 +05:30
{
description = "My homebrew NixOS configurations";
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
home-manager = {
url = github:nix-community/home-manager;
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = github:nix-community/nixvim;
inputs.nixpkgs.follows = "nixpkgs";
};
nethack = {
url = git+https://git.psf.lt/xezo360hye/nethack?shallow=1;
};
};
outputs = { self, nixpkgs, home-manager, nixvim, nethack, ... } @ inputs:
let
inherit (self) outputs;
inherit (nixpkgs) lib;
2024-08-04 23:45:01 +05:30
username = "andrey";
hostnames = [ "tokishiko" "maidena" ];
stateVersion = "24.05";
2024-08-04 23:45:01 +05:30
makeSystem = hostname: {
2024-08-04 23:45:01 +05:30
"${hostname}" = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./system/common.nix
2024-08-04 23:45:01 +05:30
./system/${hostname}.nix
./hardware/${hostname}.nix
{
system.stateVersion = stateVersion;
networking.hostName = hostname;
}
2024-08-04 23:45:01 +05:30
];
};
};
extractModule = { homeManagerModules, ... }: homeManagerModules."${lib.head (lib.attrNames homeManagerModules)}";
homeManagerModules = map extractModule [ nixvim nethack ];
makeHome = hostname: {
2024-08-04 23:45:01 +05:30
"${username}@${hostname}" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = homeManagerModules ++ [
2024-08-04 23:45:01 +05:30
./home/${hostname}.nix
./home/common.nix
{
news.display = "show";
home.username = username;
home.homeDirectory = "/home/${username}";
home.stateVersion = stateVersion;
}
2024-08-04 23:45:01 +05:30
];
};
};
forEachHost = fn: lib.fold lib.mergeAttrs {} (map fn hostnames);
2024-08-04 23:45:01 +05:30
in {
nixosConfigurations = forEachHost makeSystem;
homeConfigurations = forEachHost makeHome;
2024-08-04 23:45:01 +05:30
};
}