diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-23 09:26:51 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-23 09:26:51 -0500 |
commit | 1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2 (patch) | |
tree | eecdad132615a4469c22ee6d4ccd1df087b6159d /modules/home.nix | |
parent | use base16 in neovim and starship (diff) | |
download | dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.gz dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.bz2 dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.zip |
reconfigure
Diffstat (limited to 'modules/home.nix')
-rw-r--r-- | modules/home.nix | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/modules/home.nix b/modules/home.nix deleted file mode 100644 index 93674e8..0000000 --- a/modules/home.nix +++ /dev/null @@ -1,79 +0,0 @@ -{ config, pkgs, ... }: - -{ - home-manager.users.${config.user} = { - - home.username = config.user; - home.homeDirectory = config.homePath; - - news.display = "silent"; - fonts.fontconfig.enable = true; - nixpkgs.config.allowUnfree = true; - - home.packages = with pkgs; [ - # c / c++ - gcc - nasm - pkg-config - # rust - rustc - rustfmt - rust-analyzer - cargo - clippy - # programs - adwaita-icon-theme - cage - easyeffects - discord - element-desktop - fd - gamescope - gajim - gimp - imagemagick - libnotify - mpv - pavucontrol - pfetch-rs - rsync - starship - steam - thunderbird - unityhub - vrc-get - wine - wl-clipboard - wl-clip-persist - wl-mirror - yt-dlp - zathura - # gtk - orchis-theme - ]; - - home.file = { - ".ssh/config".source = ../files/config/ssh/config; - ".zshrc".source = ../files/config/zsh/zshrc; - ".zprofile".source = ../files/config/zsh/zprofile; - }; - - xdg.configFile = {}; - - xdg.dataFile = { - fonts = { - source = ../files/fonts; - recursive = true; - }; - }; - - gtk = { - enable = true; - gtk3.extraConfig.gtk-application-prefer-dark-theme = 1; - }; - - programs.home-manager.enable = true; - - }; -} - |