dotfiles/home.nix

46 lines
1 KiB
Nix
Raw Normal View History

2024-03-11 21:59:50 +01:00
{ config, pkgs, ... }:
2024-03-22 12:31:23 +01:00
{
2024-04-03 20:23:26 +02:00
nixpkgs.config.allowUnfree = true;
2024-03-11 21:59:50 +01:00
home.username = "svante";
home.homeDirectory = "/home/svante";
home.stateVersion = "23.11";
home.packages = [
pkgs.fortune
2024-04-03 02:43:28 +02:00
pkgs.htop
pkgs.xwaylandvideobridge
pkgs.pipewire
pkgs.wireplumber
pkgs.xdg-desktop-portal-hyprland
pkgs.qt6.qtwayland
pkgs.libsForQt5.qt5.qtwayland
pkgs.obs-studio
pkgs.prismlauncher
2024-03-16 13:45:10 +01:00
pkgs.prusa-slicer
2024-03-16 14:31:55 +01:00
pkgs.gphoto2
2024-03-25 11:54:11 +01:00
pkgs.freecad
2024-03-25 22:48:19 +01:00
pkgs.direnv
2024-04-03 02:43:28 +02:00
pkgs.easyeffects
pkgs.tmux
2024-04-03 20:23:26 +02:00
pkgs.kicad
pkgs.spotify
2024-04-03 20:31:28 +02:00
pkgs.arduino
2024-04-10 09:12:55 +02:00
pkgs.blender
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;
}