1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-03 04:03:08 +00:00
This commit is contained in:
Rae 5e 2025-03-03 19:48:52 -05:00
parent f80f844343
commit 65dc01e1d1
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
4 changed files with 218 additions and 213 deletions

23
nixos/hosts/base.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs, ... }: {
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "root" "rae" ];
};
nixpkgs = {
config.allowUnfree = true;
overlays = import ../overlays.nix inputs;
};
users.users.rae = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" "jackaudio" ];
hashedPassword = "$y$j9T$YPq.Kl8rss1JmJ5Vg6cHE/$2kdfzCkkhaO.I4u714EQnS/ZFert5byisiRVxtC.9G2";
shell = pkgs.fish;
};
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "gr928-8x16-thin"; # https://adeverteuil.github.io/linux-console-fonts-screenshots/
keyMap = "us";
};
}