initial commit

This commit is contained in:
smayzy
2025-06-18 13:44:42 +02:00
commit 9fb811e46c
5 changed files with 207 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
description = "Smayzy's nixos config (probably a violation of the geneva convention but who cares)";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, ... } @ inputs:
let
system = "x86_64-linux";
in
{
nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; };
modules = [
./configuration.nix
];
};
};
};
}