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
../common.nix
../gfx-intel.nix
../virtualbox.nix
../zerotier.nix
../i3/system.nix
../distributed-builds.nix
../libvirt.nix
];
nix.maxJobs = 4;
nix.buildCores = 2;
nix.maxJobs = 2;
nix.buildCores = 6;
}

View file

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

View file

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

View file

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

4
nixos/libvirt.nix Normal file
View file

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