43 lines
918 B
Nix
43 lines
918 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
<home-manager/nixos>
|
|
./hardware/base.nix
|
|
./hardware/gpu-bumblebee.nix
|
|
./system
|
|
./desktop
|
|
./virtualisaiton/docker.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
networking.hostName = "pilot1-nixos"; # Define your hostname.
|
|
|
|
hardware.enableAllFirmware = true;
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
hardware.logitech.enable = true;
|
|
hardware.logitech.enableGraphical = true;
|
|
|
|
services.tlp.enable = true;
|
|
|
|
programs.adb.enable = true;
|
|
|
|
users.users.felschr = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "audio" "docker" "disk" "vboxusers" ];
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
home-manager.users.felschr = import ./home/felschr-work.nix;
|
|
|
|
# only change this when specified in release notes
|
|
system.stateVersion = "19.09";
|
|
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
dates = "10:00";
|
|
};
|
|
}
|