summaryrefslogtreecommitdiff
path: root/hosts/morpheus/configuration.nix
blob: dc1edb33986285b5f92e3d34872a915ad4523013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, pkgs, ... }:

{
  services.nix-daemon.enable = true;
  users.users.shubh.home = "/Users/shubh";

  #homebrew = {
  #  enable = true;
  #  casks = [ "iterm2" "qtpass" ];
  #};

  #system.activationScripts.applications.text = pkgs.lib.mkForce (
  #  ''
  #    echo "setting up ~/Applications..." >&2
  #    rm -rf ~/Applications/Nix\ Apps
  #    mkdir -p ~/Applications/Nix\ Apps
  #    for app in $(find ${config.system.build.applications}/Applications -maxdepth 1 -type l); do
  #      src="$(/usr/bin/stat -f%Y "$app")"
  #      cp -r "$src" ~/Applications/Nix\ Apps
  #    done
  #  ''
  #);
}