2-13-25 update

This commit is contained in:
2025-02-13 16:58:23 -05:00
parent ebce574127
commit 95c4f2bb0c
11 changed files with 422 additions and 300 deletions

View File

@@ -1,4 +1,4 @@
{ ox, pkgs, username, ... }:
{ lash, pkgs, username, ... }:
{
imports = [ ./hardware.nix ];
@@ -28,7 +28,7 @@
environment = {
variables = { PATH = "${pkgs.clang-tools}/bin:$PATH"; };
shells = [ pkgs.myPkgs.ox pkgs.zsh pkgs.bash ];
shells = [ pkgs.myPkgs.lash pkgs.zsh pkgs.bash ];
};
users = {
@@ -38,7 +38,7 @@
${username} = {
isNormalUser = true;
initialPassword = "1234";
shell = pkgs.myPkgs.ox;
shell = pkgs.myPkgs.lash;
extraGroups = [ "input" "wheel" "persist" "libvirtd" ];
};
};