This commit is contained in:
2024-12-25 22:40:08 -05:00
parent 652bc37caa
commit f339d1a67a
4 changed files with 52 additions and 8 deletions

View File

@@ -1,3 +1,17 @@
{ config, pkgs, lib, ... }:
{
imports = [ ../quickly.nix ];
}
config = {
users.users.nixos = {
isNormalUser = true;
password = "password123";
extraGroups = [ "wheel" ]; # Enable sudo for the user.
packages = with pkgs; [
tmux
htop
tree
];
};
};
}