dea-files/home.nix
2026-01-08 13:39:02 -05:00

45 lines
776 B
Nix

{ config, pkgs, ... }:
{
# Enables nix commands + flakes
nix = {
settings.extra-experimental-features = [
"nix-command"
"flakes"
];
};
# Home manager things
home.username = "dea";
home.homeDirectory = "/home/dea";
home.stateVersion = "25.11";
home.packages = with pkgs; [
libsForQt5.qtstyleplugin-kvantum # libs for Qt5
libsForQt5.qt5ct
libsForQt5.qt5.qtbase
syncplay
];
programs.neovim = { };
home.sessionPath = [
"$HOME/.local/bin"
];
nixpkgs.config.allowUnfree = true;
imports = [
./homemanager/mpv.nix
];
# dconf.settings = {};
# home = {};
programs.bash = {
enable = true;
bashrcExtra = builtins.readFile ./homemanager/bashrc;
};
programs.home-manager.enable = true;
}