about summary refs log tree commit diff
path: root/users/pn.nix
blob: 7a01354be761f75036f276ba3942696e5da3e5dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## My default user
{ pkgs, ... }:

let
  home-manager = builtins.fetchTarball {
    url = "https://github.com/nix-community/home-manager/archive/63f299b3347aea183fc5088e4d6c4a193b334a41.tar.gz";
    sha256 = "0iksjch94wfvyq0cgwv5wq52j0dc9cavm68wka3pahhdvjlxd3js";
  };
in
  {

    imports = [
      (import "${home-manager}/nixos")
    ];

    nix.trustedUsers = [ "pn" ];

    users.users.pn = {
      isNormalUser = true;
      extraGroups = [ "wheel" "video" "audio" ];
    };

    environment.systemPackages = [ pkgs.picom ];

    home-manager.users.pn = {
      imports = [
        ../home.nix
        ../platforms/linux/user-dirs.nix
        ../platforms/linux/gtk.nix
      ];

      gtk.enable = true;

      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 $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 &
          duckling-proxy --serverCert $HOME/.config/duckling-proxy/ca.crt --serverKey $HOME/.config/duckling-proxy/ca.key &
        '';
        scriptPath = ".xinitrc";
      };

    };

  ## Although it's less secure I tend not to have sensitive data on my machines
  security.sudo.wheelNeedsPassword = false;
}