Whatever
This commit is contained in:
parent
3d0a294785
commit
347b20d668
17 changed files with 298 additions and 16 deletions
27
hosts/common/default.nix
Normal file
27
hosts/common/default.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue