Merge branch 'master' of github.com:IvanMalison/dotfiles
This commit is contained in:
commit
cd15797a01
@ -1168,7 +1168,9 @@ Disabling line numbers because they are slow as fuck.
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** frame-mode
|
*** frame-mode
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defvar imalison:use-frame-mode nil)
|
(defvar imalison:use-frame-mode
|
||||||
|
(s-contains? "xmonad" (shell-command-to-string "wmctrl -m")))
|
||||||
|
|
||||||
(use-package frame-mode
|
(use-package frame-mode
|
||||||
:if imalison:use-frame-mode
|
:if imalison:use-frame-mode
|
||||||
:demand t
|
:demand t
|
||||||
|
@ -107,7 +107,6 @@ in
|
|||||||
pommed_light
|
pommed_light
|
||||||
rofi
|
rofi
|
||||||
rofi-pass
|
rofi-pass
|
||||||
sddm-kcm
|
|
||||||
udiskie-appindicator
|
udiskie-appindicator
|
||||||
volnoti
|
volnoti
|
||||||
xclip
|
xclip
|
||||||
@ -145,6 +144,7 @@ in
|
|||||||
stow
|
stow
|
||||||
tmux
|
tmux
|
||||||
wget
|
wget
|
||||||
|
wmctrl
|
||||||
zsh
|
zsh
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
@ -172,7 +172,6 @@ in
|
|||||||
exportConfiguration = true;
|
exportConfiguration = true;
|
||||||
enable = true;
|
enable = true;
|
||||||
layout = "us";
|
layout = "us";
|
||||||
videoDrivers = [ "nvidia" ];
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
gnome3.enable = true;
|
gnome3.enable = true;
|
||||||
default = "none";
|
default = "none";
|
||||||
@ -222,5 +221,5 @@ in
|
|||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "18.03"; # Did you read the comment?
|
system.stateVersion = "18.03";
|
||||||
}
|
}
|
||||||
|
@ -52,15 +52,18 @@
|
|||||||
networking.hostName = "imalison-home";
|
networking.hostName = "imalison-home";
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
services.xserver.screenSection = ''
|
services.xserver = {
|
||||||
DefaultDepth 24
|
screenSection = ''
|
||||||
Option "RegistryDwords" "PerfLevelSrc=0x3322; PowerMizerDefaultAC=0x1"
|
DefaultDepth 24
|
||||||
Option "TripleBuffer" "True"
|
Option "RegistryDwords" "PerfLevelSrc=0x3322; PowerMizerDefaultAC=0x1"
|
||||||
Option "Stereo" "0"
|
Option "TripleBuffer" "True"
|
||||||
Option "nvidiaXineramaInfoOrder" "DFP-0"
|
Option "Stereo" "0"
|
||||||
Option "metamodes" "DVI-D-0: nvidia-auto-select +0+2160 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, HDMI-0: nvidia-auto-select +640+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, HDMI-1: nvidia-auto-select +2560+2160 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}"
|
Option "nvidiaXineramaInfoOrder" "DFP-0"
|
||||||
Option "SLI" "Off"
|
Option "metamodes" "DVI-D-0: nvidia-auto-select +0+2160 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, HDMI-0: nvidia-auto-select +640+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}, HDMI-1: nvidia-auto-select +2560+2160 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}"
|
||||||
Option "MultiGPU" "Off"
|
Option "SLI" "Off"
|
||||||
Option "BaseMosaic" "off"
|
Option "MultiGPU" "Off"
|
||||||
'';
|
Option "BaseMosaic" "off"
|
||||||
|
'';
|
||||||
|
videoDrivers = [ "nvidia" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
36
nixos/machines/uber-loaner.nix
Normal file
36
nixos/machines/uber-loaner.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
||||||
|
../configuration.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
||||||
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.extraModulePackages = [ pkgs.linuxPackages.rtl8814au ];
|
||||||
|
boot.loader.grub.efiSupport = true;
|
||||||
|
boot.loader.grub.device = "nodev";
|
||||||
|
boot.loader.grub.enable = true;
|
||||||
|
|
||||||
|
fileSystems."/boot" = {
|
||||||
|
device = "/dev/disk/by-label/EFI";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "/dev/disk/by-uuid/2958f04b-8387-4a0c-abc1-f12036c53581";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/tmp" =
|
||||||
|
{ device = "tmpfs";
|
||||||
|
fsType = "tmpfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
nix.maxJobs = lib.mkDefault 4;
|
||||||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||||
|
users.extraUsers.root.initialHashedPassword = "";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user