2018-01-02 21:38:26 +00:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
<stockholm/nin>
|
|
|
|
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
|
|
|
|
#../2configs/copyq.nix
|
2018-01-03 18:53:35 +00:00
|
|
|
|
<stockholm/nin/2configs/ableton.nix>
|
2018-01-02 21:38:26 +00:00
|
|
|
|
<stockholm/nin/2configs/games.nix>
|
|
|
|
|
<stockholm/nin/2configs/git.nix>
|
|
|
|
|
<stockholm/nin/2configs/retiolum.nix>
|
|
|
|
|
<stockholm/nin/2configs/termite.nix>
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
krebs.build.host = config.krebs.hosts.axon;
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "/dev/pool/root";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/tmp" =
|
|
|
|
|
{ device = "tmpfs";
|
|
|
|
|
fsType = "tmpfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/sda1";
|
|
|
|
|
fsType = "ext2";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
boot.initrd.luks.devices.crypted.device = "/dev/sda2";
|
|
|
|
|
boot.initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ];
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 4;
|
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
|
# Define on which hard drive you want to install Grub.
|
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
# services.printing.enable = true;
|
|
|
|
|
|
|
|
|
|
# nin config
|
|
|
|
|
time.timeZone = "Europe/Berlin";
|
2018-06-14 18:22:33 +00:00
|
|
|
|
services.xserver = {
|
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
|
|
displayManager.lightdm.enable = true;
|
|
|
|
|
};
|
2018-01-02 21:38:26 +00:00
|
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
|
#networking.wireless.enable = true;
|
|
|
|
|
|
|
|
|
|
hardware.pulseaudio = {
|
|
|
|
|
enable = true;
|
|
|
|
|
systemWide = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
|
|
|
|
|
|
#nixpkgs.config.steam.java = true;
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
2018-06-14 18:22:33 +00:00
|
|
|
|
atom
|
|
|
|
|
chromium
|
2018-01-02 21:38:26 +00:00
|
|
|
|
firefox
|
|
|
|
|
git
|
2018-06-14 18:22:33 +00:00
|
|
|
|
htop
|
|
|
|
|
keepassx
|
2018-01-02 21:38:26 +00:00
|
|
|
|
lmms
|
|
|
|
|
networkmanagerapplet
|
2018-06-14 18:22:33 +00:00
|
|
|
|
openvpn
|
2018-01-02 21:38:26 +00:00
|
|
|
|
python
|
2018-06-14 18:22:33 +00:00
|
|
|
|
ruby
|
2018-01-02 21:38:26 +00:00
|
|
|
|
steam
|
2018-06-14 18:22:33 +00:00
|
|
|
|
taskwarrior
|
2018-01-02 21:38:26 +00:00
|
|
|
|
thunderbird
|
|
|
|
|
vim
|
|
|
|
|
virtmanager
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
nixpkgs.config = {
|
|
|
|
|
|
|
|
|
|
allowUnfree = true;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#services.logind.extraConfig = "HandleLidSwitch=ignore";
|
|
|
|
|
|
|
|
|
|
services.xserver.synaptics = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-03 18:53:35 +00:00
|
|
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
|
|
|
${pkgs.xorg.xhost}/bin/xhost + local:
|
|
|
|
|
'';
|
2018-01-02 21:38:26 +00:00
|
|
|
|
|
|
|
|
|
services.xserver.desktopManager.xfce = let
|
|
|
|
|
xbindConfig = pkgs.writeText "xbindkeysrc" ''
|
|
|
|
|
"${pkgs.pass}/bin/passmenu --type"
|
|
|
|
|
Control + p
|
|
|
|
|
'';
|
|
|
|
|
in {
|
2018-06-14 18:22:33 +00:00
|
|
|
|
enable = true;
|
2018-01-02 21:38:26 +00:00
|
|
|
|
extraSessionCommands = ''
|
|
|
|
|
${pkgs.xbindkeys}/bin/xbindkeys -f ${xbindConfig}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# The NixOS release to be compatible with for stateful data such as databases.
|
|
|
|
|
system.stateVersion = "17.03";
|
|
|
|
|
|
|
|
|
|
}
|