also bump to 5.11.20 and add features thing so nix knows it has 32-bit emulation also added winesync
41 lines
775 B
Nix
41 lines
775 B
Nix
{ config, overlays, pkgs, ... }: {
|
|
networking.hostName = "winter";
|
|
system.stateVersion = "20.09";
|
|
|
|
imports = [
|
|
./gui.nix
|
|
./hardware-configuration.nix
|
|
./kernel.nix
|
|
./networking.nix
|
|
./packages.nix
|
|
./security.nix
|
|
];
|
|
nix = {
|
|
package = pkgs.nixUnstable;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
nixpkgs.overlays = with overlays; [
|
|
linux
|
|
polybar
|
|
picom
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# set in flakes-secrets
|
|
# time.timeZone = "";
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
|
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
users.users.lava = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
console.useXkbConfig = true;
|
|
}
|
|
|