28 lines
846 B
Nix
28 lines
846 B
Nix
{
|
|
description = "Nixos config flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-25.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
|
xremap.url = "github:xremap/nix-flake";
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
sk-extract.url = "git+https://git.skdevstudios.com/specCon18/sk_extract.git";
|
|
yunodo.url = "git+https://git.skdevstudios.com/specCon18/yunodo_redux.git";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.katana = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs;};
|
|
modules = [
|
|
inputs.home-manager.nixosModules.default
|
|
./hosts/katana.nix
|
|
./modules
|
|
./users/speccon18
|
|
];
|
|
};
|
|
};
|
|
}
|