Reset from zero

This commit is contained in:
41666 2023-12-11 18:18:41 -05:00
commit 7520235965
46 changed files with 1783 additions and 0 deletions

View 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;
}

View 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
];
}