laptop config, flakes config (#1)

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2023-08-11 18:59:35 -04:00
parent 18adcedbbf
commit 72c822cd29
19 changed files with 2134 additions and 97 deletions
+21
View File
@@ -0,0 +1,21 @@
{
description = "NixOS Configuration Files";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
let
username = "david";
in
{
nixosConfigurations = (
import ./machines { inherit (nixpkgs) lib; inherit inputs nixpkgs home-manager username; }
);
};
}