Compare commits

...

2 Commits

Author SHA1 Message Date
Joshua Yuen 05effddb29
Add tldr and vim packages 2025-07-30 01:13:55 -04:00
Joshua Yuen f727524b29
Add networking settings 2025-07-30 01:13:53 -04:00
4 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./fonts.nix ./fonts.nix
./gdm.nix ./gdm.nix
./hyprland.nix ./hyprland.nix
./network.nix
./packages.nix ./packages.nix
./pipewire.nix ./pipewire.nix
./plasma.nix ./plasma.nix

14
modules/core/network.nix Normal file
View File

@ -0,0 +1,14 @@
{
config,
host,
pkgs,
...
}:
{
networking = {
hostname = "${host}";
networkmanager.enable = true;
};
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
}

View File

@ -10,5 +10,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
tldr
vim
]; ];
} }

View File

@ -35,6 +35,7 @@ in
isNormalUser = true; isNormalUser = true;
hashedPassword = "${hashedPassword}"; hashedPassword = "${hashedPassword}";
extraGroups = [ extraGroups = [
"networkmanager"
"wheel" "wheel"
]; ];
shell = pkgs.${shellCfg.defaultShell}; shell = pkgs.${shellCfg.defaultShell};