Commit for generation 79

This commit is contained in:
2024-09-25 14:01:12 -04:00
parent 39b970c1fe
commit deb271b121

View File

@@ -3,12 +3,15 @@
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "pagedmov";
home.homeDirectory = "/home/pagedmov";
home.enableNixpkgsReleaseCheck = false;
imports = [ ./modules/zshell.nix ];
home = {
stateVersion = "24.05"; # Please read the comment before changing.
username = "pagedmov";
homeDirectory = "/home/pagedmov";
enableNixpkgsReleaseCheck = false;
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
@@ -16,12 +19,11 @@
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "24.05"; # Please read the comment before changing.
# hi
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
hompackages = with pkgs; [
hello
gtk3
adwaita-icon-theme
@@ -51,13 +53,13 @@
toilet
];
home.pointerCursor = {
pointerCursor = {
name = "Quintom_Ink";
size = 36;
package = pkgs.quintom-cursor-theme;
};
home.file = { # dotfiles
file = { # dotfiles
# example
# ".screenrc".source = dotfiles/screenrc;
# ".gradle/gradle.properties".text = ''
@@ -75,10 +77,21 @@
".config/starship/starship.toml".source = ./dotfiles/packages/starship/starship.toml;
".config/waybar/config".source = ./dotfiles/packages/waybar/config/config;
".config/waybar/style.css".source = ./dotfiles/packages/waybar/config/style.css;
};
};
xdg = {
settings = {
gtk = {
theme = "Adwaita-dark";
iconTheme = "Adwaita";
};
};
};
# Let Home Manager install and manage itself.
programs.zsh.enable = true;
programs = {
zsh.enable = true;
programs.home-manager.enable = true;
};
}