Skip to content

Instantly share code, notes, and snippets.

@fshp
Created December 11, 2018 17:27
Show Gist options
  • Save fshp/c2028c81adf9e33dae0bd3da8555c251 to your computer and use it in GitHub Desktop.
Save fshp/c2028c81adf9e33dae0bd3da8555c251 to your computer and use it in GitHub Desktop.
# 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
];
# nixpkgs.config.packageOverrides = pkgs: {
# git = pkgs.git.override { guiSupport = true; };
# };
nixpkgs.config.allowUnfree = true;
# nixpkgs.config.git.guiSupport = true;
# packageOverrides = pkgs: rec {
# java = pkgs.java.override {
# jdk = pkgs.oraclejdk8;
# };
# };
# };
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "panica-y500"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true;
# 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/Moscow";
virtualisation.virtualbox.host.enable = true;
virtualisation.virtualbox.host.enableExtensionPack = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
google-chrome
jetbrains.idea-community
gitg
tmux
slack
sublime3
gitFull
oraclejdk8
virtualbox
qbittorrent
aria2
ark
spectacle
kdiff3
gnome3.gnome-disk-utility
gsmartcontrol
iotop
ammonite
filelight
gwenview
hdparm
mpv
okular
smartmontools
tdesktop
partition-manager
firefox
];
# 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; };
services.tor.client.enable = 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;
package = pkgs.pulseaudioFull;
};
hardware.bluetooth.enable = true;
# Enable the X11 windowing system.
services.xserver.enable = true;
# services.xserver.autorun = false;
services.xserver.layout = "us";
services.xserver.xkbOptions = "eurosign:e";
services.xserver.videoDrivers = [ "nvidia" ];
# 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;
services.xserver.displayManager.sddm = {
enable = true;
autoLogin = {
enable = true;
user = "fshp";
};
};
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.fshp = {
isNormalUser = true;
home = "/home/fshp";
shell = pkgs.zsh;
extraGroups = [ "wheel" "networkmanager" "vboxusers" ];
uid = 1000;
};
programs.zsh.enable = true;
programs.java.enable = true;
programs.java.package = pkgs.oraclejdk8;
programs.zsh.ohMyZsh = {
enable = true;
plugins = [ "git" "python" "man" ];
theme = "robbyrussell";
};
# 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?
}
# 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 =
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/15f13c58-3950-42d3-b2d6-618d601c3ca6";
fsType = "f2fs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/7769-5A48";
fsType = "vfat";
};
fileSystems."/home/fshp/files" =
{ device = "/dev/disk/by-uuid/4dfcc767-771a-4b03-8423-4fceb9a371af";
fsType = "ext4";
};
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 8;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment