1
0
Fork 0
forked from dea/dea-files
dea-files/flake.nix

54 lines
1.3 KiB
Nix
Raw Permalink Normal View History

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
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-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
};
}