2026-01-07 14:32:28 -05:00
|
|
|
{
|
|
|
|
|
description = "release the dea files";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
2026-01-09 16:09:39 -05:00
|
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
|
2026-02-19 13:46:23 -05:00
|
|
|
nixcats.url = "github:BirdeeHub/nixCats-nvim";
|
2026-02-05 23:02:49 -05:00
|
|
|
|
2026-01-21 23:16:23 -05:00
|
|
|
plasma-manager = {
|
|
|
|
|
url = "github:nix-community/plasma-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
inputs.home-manager.follows = "home-manager";
|
|
|
|
|
};
|
2026-01-07 14:32:28 -05:00
|
|
|
};
|
2026-02-26 21:24:50 -05:00
|
|
|
|
|
|
|
|
nixConfig = {
|
|
|
|
|
extra-experimental-features = "pipe-operators";
|
|
|
|
|
};
|
2026-01-07 14:32:28 -05:00
|
|
|
|
2026-01-08 13:39:02 -05:00
|
|
|
outputs =
|
2026-02-19 13:46:23 -05:00
|
|
|
inputs@{ self, nixpkgs, nixcats, ... }:
|
2026-01-07 14:32:28 -05:00
|
|
|
let
|
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
|
|
|
|
|
|
commonModules = [
|
|
|
|
|
./configuration.nix
|
|
|
|
|
./user.nix
|
2026-01-09 16:09:39 -05:00
|
|
|
inputs.nix-flatpak.nixosModules.nix-flatpak
|
2026-01-07 14:32:28 -05:00
|
|
|
];
|
2026-01-08 13:39:02 -05:00
|
|
|
in
|
|
|
|
|
{
|
2026-01-07 14:32:28 -05:00
|
|
|
# laptop
|
|
|
|
|
nixosConfigurations.nahemah = lib.nixosSystem {
|
2026-01-08 13:39:02 -05:00
|
|
|
specialArgs = {
|
|
|
|
|
host = "nahemah";
|
|
|
|
|
inherit inputs;
|
2026-01-07 14:32:28 -05:00
|
|
|
};
|
|
|
|
|
modules = [
|
|
|
|
|
./hosts/nahemah/hardware-configuration.nix
|
|
|
|
|
]
|
|
|
|
|
++ commonModules;
|
|
|
|
|
};
|
|
|
|
|
|
2026-01-09 20:43:39 -05:00
|
|
|
# pc
|
2026-01-08 22:14:01 -05:00
|
|
|
nixosConfigurations.sandalphon = lib.nixosSystem {
|
|
|
|
|
specialArgs = { inherit inputs; };
|
|
|
|
|
modules = [
|
|
|
|
|
./hosts/sandalphon/hardware-configuration.nix
|
2026-01-09 13:26:43 -05:00
|
|
|
./hosts/sandalphon/configuration.nix
|
2026-01-09 20:43:39 -05:00
|
|
|
./hosts/sandalphon/games.nix
|
2026-01-08 22:14:01 -05:00
|
|
|
]
|
|
|
|
|
++ commonModules;
|
|
|
|
|
};
|
2026-01-07 14:32:28 -05:00
|
|
|
};
|
|
|
|
|
}
|