This commit is contained in:
Peritia 2025-07-24 15:19:29 +02:00
commit f89801cd39
418 changed files with 1855 additions and 0 deletions

43
flake.nix Normal file
View file

@ -0,0 +1,43 @@
{
description = "NixOS-95";
################################################################
# 🔗 Inputs
################################################################
inputs = {
# Core NixOS packages
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Home Manager
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
################################################################
# 🚀 Outputs
################################################################
outputs = inputs @ {
self,
nixpkgs,
home-manager,
...
}: {
nixosConfigurations = {
############################################################
# 💻 Default Host
############################################################
default = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs self;
host = "default";
};
modules = [
./Configurations/Hosts/Default/configuration.nix
];
};
};
};
}