#W# Initial Commit: No Flake Config
This commit is contained in:
commit
c463cec3e2
74 changed files with 14898 additions and 0 deletions
91
home/home.nix
Normal file
91
home/home.nix
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./modules/fastfetch.nix
|
||||
./modules/fuzzel.nix
|
||||
./modules/scripts.nix
|
||||
];
|
||||
home.username = "warrentyexpired";
|
||||
home.homeDirectory = "/home/warrentyexpired";
|
||||
home.stateVersion = "26.05"; # Please read the comment before changing.
|
||||
|
||||
|
||||
home.packages = [
|
||||
];
|
||||
|
||||
home.file = {
|
||||
"./.config/tmux/tmux.conf" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/tmux/tmux.conf";
|
||||
};
|
||||
"./.config/nvim" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/nvim";
|
||||
recursive = true;
|
||||
};
|
||||
"./.config/tmuxinator" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/tmuxinator";
|
||||
recursive = true;
|
||||
};
|
||||
"./.config/fish" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/fish";
|
||||
recursive = true;
|
||||
};
|
||||
"./.config/ghostty" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/ghostty";
|
||||
recursive = true;
|
||||
};
|
||||
"./.config/niri" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/niri";
|
||||
recursive = true;
|
||||
};
|
||||
"./.ssh" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/config/ssh";
|
||||
recursive = true;
|
||||
};
|
||||
"./Pictures/Wallpapers" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/files/Wallpapers";
|
||||
recursive = true;
|
||||
};
|
||||
"./.local/share/applications/TazUO.desktop" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/NixOS/home/TazUO.desktop";
|
||||
};
|
||||
};
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "adw-gtk3-dark";
|
||||
package = pkgs.adw-gtk3;
|
||||
};
|
||||
iconTheme = {
|
||||
name = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
};
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
# Home Manager can also manage your environment variables through
|
||||
# 'home.sessionVariables'. These will be explicitly sourced when using a
|
||||
# shell provided by Home Manager. If you don't want to manage your shell
|
||||
# through Home Manager then you have to manually source 'hm-session-vars.sh'
|
||||
# located at either
|
||||
#
|
||||
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
|
||||
#
|
||||
# or
|
||||
#
|
||||
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
|
||||
#
|
||||
# or
|
||||
#
|
||||
# /etc/profiles/per-user/warrentyexpired/etc/profile.d/hm-session-vars.sh
|
||||
#
|
||||
home.sessionVariables = {
|
||||
# EDITOR = "emacs";
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue