feat(nix): add a first nix, nix-darwin, and home-manager setup

This commit is contained in:
Stefan Imhoff
2024-06-27 14:15:12 +02:00
parent 2996d89a87
commit 15626b7abd
13 changed files with 359 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, config, ... }:
{
imports = [
../../darwin
];
users.users.kogakure = {
name = "kogakure";
home = "/Users/kogakure";
};
}

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
imports = [
../../home
];
services.yabai.enable = true;
services.skhd.enable = true;
}