74 lines
1.8 KiB
Nix
74 lines
1.8 KiB
Nix
{
|
|
description = "My nix hosts";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
home-manager-stable = {
|
|
url = "github:nix-community/home-manager/release-25.05";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
|
};
|
|
|
|
agenix = {
|
|
url = "github:ryantm/agenix";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
|
};
|
|
|
|
disko = {
|
|
url = "github:nix-community/disko?ref=v1.11.0";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
|
};
|
|
|
|
dms = {
|
|
url = "github:AvengeMedia/DankMaterialShell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
stylix.url = "github:danth/stylix";
|
|
|
|
nixos-cli.url = "github:nix-community/nixos-cli";
|
|
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak/main";
|
|
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
|
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
deploy-rs.url = "github:serokell/deploy-rs";
|
|
|
|
niri-flake.url = "github:sodiboo/niri-flake";
|
|
|
|
niri.url = "github:baduhai/niri/auto-center-when-space-available";
|
|
|
|
nix-index-database = {
|
|
url = "github:nix-community/nix-index-database";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs@{ flake-parts, ... }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
systems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
|
|
imports = [
|
|
./devShells.nix
|
|
./homeConfigurations.nix
|
|
./nixosConfigurations.nix
|
|
./nixosModules.nix
|
|
./overlays.nix
|
|
./packages.nix
|
|
./deploy.nix
|
|
];
|
|
};
|
|
}
|