Delegated session start to home-manager, shuffled programes around
This commit is contained in:
parent
e3064c94a0
commit
a2dead079c
1 changed files with 16 additions and 13 deletions
|
@ -24,30 +24,35 @@
|
|||
|
||||
fonts.extraFonts = with pkgs; [
|
||||
libertine
|
||||
tewi-font
|
||||
iosevka
|
||||
inconsolata
|
||||
dejavu_fonts
|
||||
];
|
||||
|
||||
environment = {
|
||||
variables.EDITOR = pkgs.lib.mkOverride 10 "vim"; # vim is my default editor
|
||||
shells = [ pkgs.zsh ];
|
||||
# Rule of thumb: only X utilities and pure system programs
|
||||
systemPackages = with pkgs; [
|
||||
(import ./vim.nix)
|
||||
(pkgs.lib.mkOverride 10 st) # patched, see at the end of this file
|
||||
arandr
|
||||
autorandr
|
||||
chromium
|
||||
crda # WiFi regulatory domains
|
||||
dmenu
|
||||
feh
|
||||
gimp
|
||||
lemonbar
|
||||
git
|
||||
(pkgs.lib.mkOverride 10 st) # patched, see at the end of this file
|
||||
gnumeric
|
||||
i3lock-fancy
|
||||
inkscape
|
||||
lemonbar-xft
|
||||
mpv
|
||||
nethogs
|
||||
optipng
|
||||
pavucontrol
|
||||
qutebrowser
|
||||
stow
|
||||
unzip
|
||||
wget
|
||||
xclip
|
||||
zathura
|
||||
];
|
||||
};
|
||||
|
@ -248,8 +253,6 @@
|
|||
sessionCommands = ''
|
||||
xset r rate 200 75
|
||||
xrandr --output eDP1 --mode 1920x1080
|
||||
sh /home/eeva/.fehbg
|
||||
mkdir -p /tmp/monitors
|
||||
'';
|
||||
slim.theme = pkgs.fetchurl {
|
||||
url = http://marvid.fr/~eeva/mirror/slim-theme-solarized-debian.tar.bz2;
|
||||
|
@ -270,10 +273,10 @@
|
|||
videoDrivers = [ "intel" "modesetting" ];
|
||||
#videoDrivers = [ "amdgpu" "intel" "modsetting" ]; # I wish
|
||||
|
||||
windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
};
|
||||
#windowManager.xmonad = {
|
||||
# enable = true;
|
||||
# enableContribAndExtras = true;
|
||||
#};
|
||||
desktopManager.xterm.enable = false;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue