blob: 78e1a901e30a8a9730d28754d085bcaabc6cef70 (
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
|
{ config, lib, pkgs, inputs, ...}:
{
imports = [
inputs.impermanence.nixosModules.home-manager.impermanence
../../roles/home
];
# theme.nix is an untracked symlink to a theme under ./themes/
# This lets me switch out my theme without making changes in git
theme = import ../../theme.nix;
home.persistence."/persist/home" = {
allowOther = true;
directories = [
".local/bin"
".local/share/applications"
".mozilla"
".wine"
".irssi"
".config/jellyfin"
".local/share/jellyfin"
".cache/jellyfin"
];
};
programs = {
zoxide.enable = true;
};
home.packages = with pkgs; [
pfetch
irssi
mkvtoolnix
];
home.stateVersion = "23.11";
}
|