Compare commits
2 Commits
05effddb29
...
ab8a7b5e3e
| Author | SHA1 | Date |
|---|---|---|
|
|
ab8a7b5e3e | |
|
|
a86b16f845 |
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
host,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
networking = {
|
||||||
|
hostName = "${host}";
|
||||||
|
networkmanager.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
|
||||||
|
}
|
||||||
|
|
@ -10,5 +10,7 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
git
|
||||||
|
tldr
|
||||||
|
vim
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
@ -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};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue