mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Add new host "fern"
This commit is contained in:
parent
c56cefd0c4
commit
02cd2d5f03
8 changed files with 177 additions and 1 deletions
34
hosts/fern/default.nix
Normal file
34
hosts/fern/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../common.nix
|
||||
./hardware.nix
|
||||
./disko.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
myConfig = {
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
silent = true;
|
||||
};
|
||||
|
||||
dm.tuigreet.enable = true;
|
||||
de.hyprland.enable = true;
|
||||
|
||||
wlan.enable = true;
|
||||
bluetooth.enable = true;
|
||||
|
||||
sound.enable = true;
|
||||
virtualisation.enable = true;
|
||||
sops.enable = true;
|
||||
auto-gc.enable = true;
|
||||
geoclue.enable = true;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
ssh.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue