moved parts of config around

This commit is contained in:
Moritz Böhme 2021-09-10 08:59:21 +02:00
parent ec5255f6ae
commit 2dc6539002
4 changed files with 27 additions and 61 deletions

View file

@ -2,6 +2,7 @@
let
base = {
xsession.windowManager.bspwm.enable = true;
xdg = {
enable = true;
configFile = {

View file

@ -13,6 +13,26 @@
./zathura.nix
./zsh.nix
];
# USERS
users.users.moritz = {
shell = pkgs.zsh;
isNormalUser = true;
home = "/home/moritz";
extraGroups = [ "wheel" "networkmanager" "video" ]; # Enable sudo for the user.
};
fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" "JetBrainsMono"];})
];
# PACKAGES
environment.systemPackages = with pkgs; [
vim
wget
firefox
];
home-manager.users.moritz = {
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;