refactored

This commit is contained in:
alsaiduq-lab 2025-07-01 10:28:17 -06:00
parent e23e89cd1b
commit 3f4178ad0c
4 changed files with 9 additions and 14 deletions

View file

@ -1,12 +1,10 @@
{pkgs, ...}: let
fish-rust = pkgs.callPackage ../pkgs/fish-rust {};
in {
{pkgs, ...}: {
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.cobray = {
isNormalUser = true;
description = "Mon Aie";
extraGroups = ["networkmanager" "wheel" "docker" "video"];
shell = pkgs.bash;
shell = pkgs.fish;
};
security.sudo = {
@ -16,6 +14,5 @@ in {
programs.fish = {
enable = true;
package = fish-rust;
};
}