mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 16:39:07 +01:00
profiles: Introduce core, server and workstation profiles
This commit is contained in:
parent
1c0f293c3d
commit
100f02a2d8
15 changed files with 94 additions and 163 deletions
22
profiles/workstation.nix
Normal file
22
profiles/workstation.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ self, pkgs, ... }:
|
||||
{
|
||||
imports = [ self.nixosModules.profile-core ];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
custom = {
|
||||
networking.overlay.role = "client";
|
||||
boot.silent = true;
|
||||
dm.tuigreet = {
|
||||
enable = true;
|
||||
autoLogin = true;
|
||||
};
|
||||
de.hyprland.enable = true;
|
||||
services = {
|
||||
sound.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.localsend.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue