beginning of something great?

This commit is contained in:
nat 2025-06-16 02:09:21 -04:00
commit c5a4e4c668
5 changed files with 347 additions and 0 deletions

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
home-manager,
}:
let system = "x86_64-linux"; in
{
nixosConfigurations = {
"spectre" = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
];
};
};
};
}