first stage of laptop flake

This commit is contained in:
atagen 2023-05-17 21:02:01 +10:00
parent 4aa5519043
commit 739acea0a2
3 changed files with 137 additions and 0 deletions

17
home/plank.nix Normal file
View file

@ -0,0 +1,17 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./home.nix
];
home = {
username = "plank";
homeDirectory = "/home/plank";
};
}