From a80614bddf6403bfd6b5b83416301883c23ca3bb Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 26 Dec 2020 16:07:08 +0100 Subject: Add home-manager --- users/pn.nix | 47 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 43 insertions(+), 4 deletions(-) (limited to 'users/pn.nix') diff --git a/users/pn.nix b/users/pn.nix index 3a74358..0dcccb6 100755 --- a/users/pn.nix +++ b/users/pn.nix @@ -1,10 +1,49 @@ ## My default user -{ - users.users.pn = { - isNormalUser = true; - extraGroups = [ "wheel" "audio" ]; +let + home-manager = builtins.fetchTarball { + url = "https://github.com/nix-community/home-manager/archive/master.tar.gz"; }; +in + { + + imports = [ + (import "${home-manager}/nixos") + ]; + + users.users.pn = { + isNormalUser = true; + extraGroups = [ "wheel" "audio" ]; + }; + + home-manager.users.pn = { + xsession = { + enable = true; + windowManager.command = "dbus-run-session -- dwm"; + profileExtra = '' + # Fix Gnome Apps Slow Start due to failing services + # Add this when you include flatpak in your system + dbus-update-activation-environment --systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY + + mpd & # music player daemon-you might prefer it as a service though + remaps & # run the remaps script, switching caps/esc and more; check it for more info + setbg & # set the background with the `setbg` script + #xrdb $\{XDG_CONFIG_HOME:-$HOME/.config}/Xresources & # Uncomment to use Xresources colors/settings on startup + xcompmgr & + # picom & + dunst & # dunst for notifications + xset r rate 300 50 & # Speed xrate up + # unclutter & # Remove mouse when idle + #sxhkd & + dockd --daemon & + for app in `ls ~/.config/autostart/*.desktop`; do + $(grep '^Exec' $app | sed 's/^Exec=//') & + done + sleep .5 && screen-orient & + ''; + scriptPath = ".xinitrc"; + }; + }; ## Although it's less secure I tend not to have sensitive data on my machines security.sudo.wheelNeedsPassword = false; -- cgit 1.4.1