Compare commits

...

2 Commits

Author SHA1 Message Date
Joshua Yuen 6063de20ee
Add tldr and vim packages 2025-07-30 01:11:50 -04:00
Joshua Yuen a0887dbe12
Add networking settings 2025-07-30 01:03:36 -04:00
4 changed files with 17 additions and 0 deletions

View File

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

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

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

View File

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

View File

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