dotfiles/home.nix
2024-03-16 14:31:55 +01:00

40 lines
888 B
Nix

{ config, pkgs, ... }:
let
pipewire = pkgs.pipewire;
in {
home.username = "svante";
home.homeDirectory = "/home/svante";
home.stateVersion = "23.11";
home.packages = [
pkgs.fortune
pkgs.htop
pkgs.xwaylandvideobridge
pipewire
pkgs.wireplumber
pkgs.xdg-desktop-portal-hyprland
pkgs.qt6.qtwayland
pkgs.libsForQt5.qt5.qtwayland
pkgs.obs-studio
pkgs.prismlauncher
pkgs.prusa-slicer
pkgs.gphoto2
];
home.file = {
".config/fuzzel".source = dotfiles/fuzzel;
".config/hypr".source = dotfiles/hypr;
".config/kitty".source = dotfiles/kitty;
".config/nvim/lua/vanten".source = dotfiles/nvim;
".config/waybar".source = dotfiles/waybar;
"scripts".source = dotfiles/scripts;
".zshrc".source = dotfiles/zshrc;
".config/local".source = dotfiles/local;
};
home.sessionVariables = { };
programs.home-manager.enable = true;
}