statr migration to 20.03

This commit is contained in:
Cyryl Płotnicki 2020-02-29 14:00:42 +00:00
parent 546c68167a
commit 472e592b1d
5 changed files with 10 additions and 7 deletions

View file

@ -38,12 +38,12 @@
../boot.nix ../boot.nix
../common.nix ../common.nix
../gfx-intel.nix ../gfx-intel.nix
../virtualbox.nix
../zerotier.nix ../zerotier.nix
../i3/system.nix ../i3/system.nix
../distributed-builds.nix ../distributed-builds.nix
../libvirt.nix
]; ];
nix.maxJobs = 4; nix.maxJobs = 2;
nix.buildCores = 2; nix.buildCores = 6;
} }

View file

@ -12,7 +12,6 @@
extraModules = [ pkgs.pulseaudio-modules-bt ]; extraModules = [ pkgs.pulseaudio-modules-bt ];
}; };
hardware.u2f.enable = true; hardware.u2f.enable = true;
hardware.brightnessctl.enable = true;
hardware.sane.enable = true; hardware.sane.enable = true;
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;

View file

@ -4,7 +4,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
passff-host passff-host
gnome3.gnome-screenshot gnome3.gnome-screenshot
xpdf apvlv xidlehook blueman apvlv xidlehook blueman
fontconfig xclip gimp glxinfo fontconfig xclip gimp glxinfo
notable evince signal-desktop notable evince signal-desktop
libreoffice vlc libreoffice vlc

View file

@ -15,7 +15,7 @@ in
}; };
home.sessionVariables = { home.sessionVariables = {
TERMINAL="termite"; TERMINAL="alacritty";
CM_LAUNCHER="rofi"; CM_LAUNCHER="rofi";
PASSWORD_STORE_ENABLE_EXTENSIONS="true"; PASSWORD_STORE_ENABLE_EXTENSIONS="true";
}; };
@ -23,7 +23,7 @@ in
imports = [ imports = [
./programs/tmux.nix ./programs/tmux.nix
./programs/zsh.nix ./programs/zsh.nix
./programs/termite.nix ./programs/alacritty.nix
./programs/git.nix ./programs/git.nix
./programs/vim.nix ./programs/vim.nix
./programs.nix ./programs.nix

4
nixos/libvirt.nix Normal file
View file

@ -0,0 +1,4 @@
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
}