-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.nix
More file actions
44 lines (38 loc) · 940 Bytes
/
Copy pathhome.nix
File metadata and controls
44 lines (38 loc) · 940 Bytes
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
{ config, pkgs, ... }:
{
imports = [
./modules/packages.nix
./modules/shell.nix
./modules/neovim.nix
./modules/git.nix
./modules/tmux.nix
# ./modules/ghostty.nix
./modules/foot.nix
./modules/hyprland.nix
# ./modules/ironbar.nix
./modules/rumdl.nix
./modules/opencode.nix
./modules/mpd.nix
./modules/rmpc.nix
./modules/mpv.nix
./modules/qutebrowser.nix
./modules/xdg.nix
./modules/wallpaper-slideshow.nix
./modules/simple-notifier.nix
./modules/syncthing.nix
./modules/zathura.nix
./modules/sioyek.nix
./modules/webapps.nix
];
nixpkgs.config.allowUnfree = true;
targets.genericLinux.enable = true;
nix.gc = {
automatic = true;
options = "--delete-older-than 10d";
persistent = true;
};
home.username = "simon";
home.homeDirectory = "/home/simon";
programs.home-manager.enable = true;
home.stateVersion = "25.11";
}