Reset from zero
This commit is contained in:
commit
7520235965
46 changed files with 1783 additions and 0 deletions
13
darwin/hosts/noe-air/default.nix
Normal file
13
darwin/hosts/noe-air/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
../../common.nix
|
||||
];
|
||||
|
||||
programs.fish.enable = true;
|
||||
|
||||
users.users.noe = (import ../../user.nix) "noe" // {
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
home-manager.users.noe = import ../../../home-manager/noe/hosts/noe-air.nix;
|
||||
}
|
25
darwin/hosts/work-mac/default.nix
Normal file
25
darwin/hosts/work-mac/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }: let
|
||||
username = builtins.getEnv "USER";
|
||||
in {
|
||||
imports = [
|
||||
../../common.nix
|
||||
];
|
||||
|
||||
users.users.${username} = (import ../../user.nix) username // {
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
home-manager.users.${username} = import ../../../home-manager/noe/hosts/work-mac.nix;
|
||||
|
||||
environment.systemPackages =
|
||||
with pkgs; [
|
||||
vim
|
||||
neovim
|
||||
tfswitch
|
||||
awscli2
|
||||
kubectl
|
||||
jq
|
||||
nil
|
||||
direnv
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue