dotfiles/home.nix

40 lines
888 B
Nix
Raw Normal View History

2024-03-11 21:59:50 +01:00
{ config, pkgs, ... }:
let
pipewire = pkgs.pipewire;
in {
2024-03-11 21:59:50 +01:00
home.username = "svante";
home.homeDirectory = "/home/svante";
home.stateVersion = "23.11";
home.packages = [
pkgs.fortune
2024-03-16 13:45:10 +01:00
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
2024-03-16 14:31:55 +01:00
pkgs.gphoto2
2024-03-11 21:59:50 +01:00
];
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;
2024-03-11 22:12:10 +01:00
"scripts".source = dotfiles/scripts;
2024-03-11 21:59:50 +01:00
".zshrc".source = dotfiles/zshrc;
".config/local".source = dotfiles/local;
2024-03-11 21:59:50 +01:00
};
home.sessionVariables = { };
programs.home-manager.enable = true;
}