mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): add a first nix, nix-darwin, and home-manager setup
This commit is contained in:
12
nix/hosts/mac-mini/configuration.nix
Normal file
12
nix/hosts/mac-mini/configuration.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../darwin
|
||||
];
|
||||
|
||||
users.users.kogakure = {
|
||||
name = "kogakure";
|
||||
home = "/Users/kogakure";
|
||||
};
|
||||
}
|
||||
10
nix/hosts/mac-mini/home.nix
Normal file
10
nix/hosts/mac-mini/home.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../home
|
||||
];
|
||||
|
||||
services.yabai.enable = true;
|
||||
services.skhd.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user