initial commit with 30% less flair than usual ngl

This commit is contained in:
martyTF 2025-12-15 00:00:26 +01:00
commit 9dc30dc2a0
7 changed files with 197 additions and 0 deletions

22
flake.nix Normal file
View file

@ -0,0 +1,22 @@
{
description = "MartyTF's NixOS flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, ... }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
nixosConfigurations = {
marty-pc = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ./marty-pc.nix ];
};
};
};
}