This commit is contained in:
willifan 2024-05-11 19:56:45 +02:00
parent 3d0a294785
commit 347b20d668
17 changed files with 298 additions and 16 deletions

27
hosts/common/default.nix Normal file
View file

@ -0,0 +1,27 @@
{ pkgs, ... }:
{
networking.hostName = "Lenni";
imports = [
./hardware-configuration.nix
./applications.nix
./auto-cpufreq.nix
./envvar.nix
./nix-ld-nix
./pipewire.nix
./polkit.nix
./syncthing.nix
./udev.nix
./user.nix
./boot.nix
./locales.nix
];
networking.networkmanager.enable = true;
console.keyMap = "de";
nixpkgs.config.allowUnfree = true;
services.hardware.bolt.enable = true;
services.fprintd.enable = true;
programs.hyprland.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "23.11";
}