From ae116b2054f3d6feba28f0191f2c28ac11eead03 Mon Sep 17 00:00:00 2001 From: kai Date: Tue, 2 Jul 2019 14:21:17 +0200 Subject: [PATCH] add zfs --- configuration.nix | 157 +++++++++++++++++++++++++++++++++++++ configuration.nix.b | 87 ++++++++++++++++++++ hardware-configuration.nix | 40 ++++++++++ 3 files changed, 284 insertions(+) create mode 100644 configuration.nix create mode 100644 configuration.nix.b create mode 100644 hardware-configuration.nix diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..66fc38d --- /dev/null +++ b/configuration.nix @@ -0,0 +1,157 @@ +# 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, pkgs, ... }: + + +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + ]; + + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # ntworking.hostName = "nixos"; # Define your hostname. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + + # Configure network proxy if necessary + # networking.proxy.default = "http://user:password@proxy:port/"; + # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + networking.networkmanager.enable = true; + boot.loader.grub.useOSProber = true; + boot.kernelParams = ["zfs.zfs_arc_max=6884901888" "nouveau.modeset=0"]; + # Select internationalisation properties. + i18n = { + consoleFont = "Lat2-Terminus16"; + consoleKeyMap = "de"; + defaultLocale = "en_US.UTF-8"; + }; + + # Set your time zone. + time.timeZone = "Europe/Berlin"; + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + wget + vim + xlibs.xmessage + ghc + xmobar + networkmanager + wpa_supplicant + emacs + zsh + tmux + screen + firefox + cmake + autoconf + gcc + automake + git + ripgrep + silver-searcher + awesome + jetbrains.idea-ultimate + clojure + leiningen + alacritty + nox + xcape + inxi + neofetch + glxinfo + nmon + htop + + ]; + boot.supportedFilesystems = [ "zfs" ]; + networking.hostId = "0b4cbd12"; + boot.loader.grub.copyKernels = true; + boot.kernelPackages = pkgs.linuxPackages_latest; + hardware.opengl.driSupport32Bit = true; + programs.light.enable = true; + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + # programs.mtr.enable = true; + # programs.gnupg.agent = { enable = true; enableSSHSupport = true; }; + + # List services that you want to enable: + hardware.brightnessctl.enable = true; + services.flatpak.enable = true; + services.zfs.autoSnapshot.enable = true; + services.zfs.autoScrub.enable = true; + # Enable the OpenSSH daemon. + # services.openssh.enable = true; + + # Open ports in the firewall. + # networking.firewall.allowedTCPPorts = [ ... ]; + # networking.firewall.allowedUDPPorts = [ ... ]; + # Or disable the firewall altogether. + # networking.firewall.enable = false; + + # Enable CUPS to print documents. + services.printing.enable = true; + + # Enable sound. + sound.enable = true; + hardware.pulseaudio.enable = true; + + # Enable the X11 windowing system. + services.xserver.enable = true; + services.xserver.layout = "de"; + # services.xserver.xkbOptions = "eurosign:e"; + + # Enable touchpad support. + services.xserver.libinput.enable = true; + + # Enable the KDE Desktop Environment. + services.xserver.displayManager.sddm.enable = true; + services.xserver.desktopManager.plasma5.enable = true; + + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.k41 = { + isNormalUser = true; + extraGroups = [ "wheel" "video"]; # Enable ‘sudo’ for the user. + shell = pkgs.zsh; + }; + + # disable card with bbswitch by default since we turn it on only on demand! + hardware.nvidiaOptimus.disable = false; # install nvidia drivers in addition to intel one + hardware.opengl.extraPackages = [ pkgs.linuxPackages.nvidia_x11.out ]; + hardware.opengl.extraPackages32 = [ pkgs.linuxPackages.nvidia_x11.lib32 ]; + # hardware.bumblebee.enable = true; + # services.xserver.videoDrivers = [ "nvidia" ]; + # hardware.nvidia.optimus_prime.enable = true; + # Bus ID of the NVIDIA GPU. You can find it using lspci + # hardware.nvidia.optimus_prime.nvidiaBusId = "PCI:1:0:0"; + # Bus ID of the Intel GPU. You can find it using lspci + # hardware.nvidia.optimus_prime.intelBusId = "PCI:0:2:0"; + + # This value determines the NixOS release with which your system is to be + # compatible, in order to avoid breaking some software such as database + # servers. You should change this only after NixOS release notes say you + # should. + system.stateVersion = "19.03"; # Did you read the comment? + + # Custom + nixpkgs.config.allowUnfree = true; + +# environment.systemPackages = with pkgs; [ +# emacs +# emacs24Packages.haskellMode +# xlibs.xmessage +# haskellPackages.haskellPlatform.ghc +# haskellPackages.xmobar +# haskellPackages.xmonad +# haskellPackages.xmonadContrib +# haskellPackages.xmonadExtras +#]; +#windowManager.xmonad.enableContribAndExtras = true; + +} diff --git a/configuration.nix.b b/configuration.nix.b new file mode 100644 index 0000000..d62e8f9 --- /dev/null +++ b/configuration.nix.b @@ -0,0 +1,87 @@ +# 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, pkgs, ... }: + +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + ]; + + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # networking.hostName = "nixos"; # Define your hostname. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + + # Configure network proxy if necessary + # networking.proxy.default = "http://user:password@proxy:port/"; + # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + + # Select internationalisation properties. + # i18n = { + # consoleFont = "Lat2-Terminus16"; + # consoleKeyMap = "us"; + # defaultLocale = "en_US.UTF-8"; + # }; + + # Set your time zone. + # time.timeZone = "Europe/Amsterdam"; + + # List packages installed in system profile. To search, run: + # $ nix search wget + # environment.systemPackages = with pkgs; [ + # wget vim + # ]; + + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + # programs.mtr.enable = true; + # programs.gnupg.agent = { enable = true; enableSSHSupport = true; }; + + # List services that you want to enable: + + # Enable the OpenSSH daemon. + # services.openssh.enable = true; + + # Open ports in the firewall. + # networking.firewall.allowedTCPPorts = [ ... ]; + # networking.firewall.allowedUDPPorts = [ ... ]; + # Or disable the firewall altogether. + # networking.firewall.enable = false; + + # Enable CUPS to print documents. + # services.printing.enable = true; + + # Enable sound. + # sound.enable = true; + # hardware.pulseaudio.enable = true; + + # Enable the X11 windowing system. + # services.xserver.enable = true; + # services.xserver.layout = "us"; + # services.xserver.xkbOptions = "eurosign:e"; + + # Enable touchpad support. + # services.xserver.libinput.enable = true; + + # Enable the KDE Desktop Environment. + # services.xserver.displayManager.sddm.enable = true; + # services.xserver.desktopManager.plasma5.enable = true; + + # Define a user account. Don't forget to set a password with ‘passwd’. + # users.users.jane = { + # isNormalUser = true; + # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + # }; + + # This value determines the NixOS release with which your system is to be + # compatible, in order to avoid breaking some software such as database + # servers. You should change this only after NixOS release notes say you + # should. + system.stateVersion = "19.03"; # Did you read the comment? + +} diff --git a/hardware-configuration.nix b/hardware-configuration.nix new file mode 100644 index 0000000..b7caec5 --- /dev/null +++ b/hardware-configuration.nix @@ -0,0 +1,40 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, ... }: + +{ + imports = + [ + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "sd_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "rpool/root/nixos"; + fsType = "zfs"; + }; + + fileSystems."/home" = + { device = "rpool/home"; + fsType = "zfs"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/AEA7-0915"; + fsType = "vfat"; + }; + + fileSystems."/home/k41/mnt" = + { device = "/dev/disk/by-uuid/3fc73ae8-e740-4a70-afc2-6de7437047b8"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + + nix.maxJobs = lib.mkDefault 12; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; +}