ctucx.git: nixfiles

ctucx' nixfiles

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 
{ inputs, config, pkgs, lib, ... }:

{

  imports = [
    ./systemSettings.nix
    ./appSettings.nix
    ./keyboard.nix
    ./trackpad.nix
    ./finder.nix
    ./dock.nix

    ./skhd.nix
    ./aerospace.nix
    ./syncthing.nix
    ./uhubDaemon.nix
    ./syncthing.nix

    ./homebrew.nix
    ./macAppStore.nix
    ./programs
  ];

  ctucxConfig.programs = {
    password-store.enable = true;
    texlive.enable        = true;
    yt-dlp.enable         = true;
    ocrmypdf.enable       = true;
    phockup.enable        = true;
  };

  services.nix-daemon.enable = true;

  home-manager = {
    useUserPackages = true;

#    users.katja.imports            = [ inputs.mac-app-util.homeManagerModules.default ];
    users.katja.home.homeDirectory = lib.mkForce "/Users/katja/";
    users.katja.home.packages      = with pkgs; [
      bgiparser
      asitop

      utm
      monitorcontrol
    ];
  };

  environment = {
    loginShell     = "${pkgs.bashInteractive}/bin/bash";
    shells         = [ pkgs.bashInteractive ];
    systemPackages = with pkgs; [
      bashInteractive
    ];
  };

}