02-15-25 update

This commit is contained in:
2025-02-15 20:31:57 -05:00
parent 95c4f2bb0c
commit 7326ab40f0
13 changed files with 77 additions and 48 deletions

View File

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