config/common/home/default.nix

92 lines
1.8 KiB
Nix
Raw Normal View History

2024-05-03 13:33:06 -04:00
{
pkgs,
inputs,
lib,
...
2024-05-23 20:26:30 +00:00
}: let
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
in {
2024-05-03 13:33:06 -04:00
imports = [
2024-05-23 20:26:30 +00:00
./swayidle.nix
2024-05-03 13:33:06 -04:00
./vim/default.nix
2024-05-23 20:26:30 +00:00
./firefox.nix
2024-05-03 13:33:06 -04:00
2024-05-23 20:26:30 +00:00
../rice/ags
../rice/hyprland
2024-05-03 13:33:06 -04:00
# ../rice/sway
2024-05-23 20:26:30 +00:00
../rice/gtk.nix
../rice/kitty.nix
2024-05-03 13:33:06 -04:00
# ../rice/waybar
# ../rice/dunst.nix
2024-05-23 20:26:30 +00:00
../rice/anyrun
../rice/rio.nix
../rice/wofi.nix
2024-05-03 13:33:06 -04:00
../shell
2024-05-23 20:26:30 +00:00
inputs.spicetify-nix.homeManagerModule
inputs.catppuccin.homeManagerModules.catppuccin
2024-05-03 13:33:06 -04:00
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
overlays = [
inputs.neovim-nightly-overlay.overlay
];
};
2024-05-23 20:26:30 +00:00
gtk.catppuccin.cursor.enable = false;
nix.gc = {
automatic = true;
frequency = "weekly";
options = "--delete-older-than 30d";
};
catppuccin.flavor = "mocha";
2024-05-03 13:33:06 -04:00
# 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.
#
# 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 = "23.11"; # Please read the comment before changing it.
home.packages = [
2024-05-23 20:26:30 +00:00
pkgs.wofi
2024-05-03 13:33:06 -04:00
pkgs.dconf
2024-05-23 20:26:30 +00:00
pkgs.wl-clipboard
pkgs.swaybg
pkgs.pavucontrol
pkgs.wlogout
pkgs.sway-audio-idle-inhibit
pkgs.grim
pkgs.slurp
pkgs.xfce.thunar
pkgs.feh
pkgs.nitch
2024-05-03 13:33:06 -04:00
pkgs.nix-output-monitor
2024-05-23 20:26:30 +00:00
pkgs.fastfetch
2024-05-03 13:33:06 -04:00
2024-05-23 20:26:30 +00:00
pkgs.nh
pkgs.dwl
2024-05-03 13:33:06 -04:00
pkgs.killall
];
home.sessionVariables = {
EDITOR = "nvim";
};
xdg.enable = true;
2024-05-23 20:26:30 +00:00
# programs.nixvim = ./vim.nix;
2024-05-03 13:33:06 -04:00
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}