-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
63 lines (56 loc) · 1.6 KB
/
home.nix
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
{
pkgs,
userSettings,
pkgs-stable,
...
}: {
imports = [
./user/app/terminal/sh.nix
# ./firefox.nix
./user/app/git/git.nix
./user/app/vscode/vscode.nix
./user/app/browser/firefox.nix
./neovim/nixvim.nix
./user/app/tmux/tmux.nix
./user/app/tmux/tmuxinator.nix
./user/app/terminal/starship.nix
./user/app/terminal/zoxide.nix
./user/app/virtualmachine/virt-manager.nix
];
home.username = userSettings.username;
home.homeDirectory = userSettings.homeDir;
# Example themes: https://github.com/tinted-theming/schemes/tree/spec-0.11/base16
# Some example color schemes that can be turned on/off
#stylix.image = ./system/style/lake-sunrise.jpg;
#stylix.enable = true;
stylix.image = ./wallpapers/Fantasy-Autumn.png;
#stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml";
#stylix.base16Scheme = "/home/sean/Downloads/dotfiles/themes/cyborg_girl";
home.packages = with pkgs; [
git
vscode
# firefox
tmux
starship
tmuxinator
# pkgs-unstable.vimPlugins.codesnap-nvim
# qtile
nushell
];
home.file.".config/qtile/config.py" = {
source = ./qtile/config.py;
};
xdg.userDirs.enable = true;
xdg.userDirs.createDirectories = true;
xdg.userDirs = {
music = "$HOME/Music";
# downloads = "$HOME/Downloads";
documents = "$HOME/Documents";
pictures = "$HOME/Pictures";
videos = "$HOME/Videos";
# books = "$HOME/Books";
};
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}