dea-files/home.nix

83 lines
1.5 KiB
Nix
Raw Normal View History

2026-01-09 22:03:21 -05:00
{
lib,
pkgs,
inputs,
2026-01-09 22:03:21 -05:00
...
}:
2026-01-07 14:32:28 -05:00
2026-01-10 12:32:53 -05:00
2026-01-07 14:32:28 -05:00
{
# 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
2026-01-09 15:50:11 -05:00
btop-cuda
2026-01-07 14:32:28 -05:00
croc
2026-01-07 14:32:28 -05:00
syncplay
];
2026-02-06 00:28:46 -05:00
# programs.neovim = { };
2026-01-07 14:32:28 -05:00
home.sessionPath = [
"$HOME/.local/bin"
];
nixpkgs.config.allowUnfree = true;
2026-01-10 16:37:48 -05:00
nixpkgs.overlays = [ (import ./exprs/overlay.nix { }) ];
2026-01-07 14:32:28 -05:00
imports = [
./homemanager/mpv.nix
2026-02-06 00:28:46 -05:00
./homemanager/nvf.nix
2026-01-10 12:32:53 -05:00
./hosts/sandalphon/mcsr/home.nix
inputs.plasma-manager.homeModules.plasma-manager
2026-02-06 00:28:46 -05:00
inputs.nvf.homeManagerModules.default
2026-01-07 14:32:28 -05:00
];
# dconf.settings = {};
# home = {};
programs.bash = {
enable = true;
bashrcExtra = builtins.readFile ./homemanager/bashrc;
};
2026-01-08 22:16:10 -05:00
# programs.starship = {
# enable = true;
# settings = {
# add_newline = true;
# format = "$directory\n$character";
# directory = {
# truncation_length = 3;
# truncate_to_repo = false;
# format = "[$path]($style) [❤](bold fg:#ff5fff) ";
# style = "bold cyan";
# };
# character = {
# success_symbol = "";
# error_symbol = "";
# };
# };
# };
programs.plasma = {
enable = true;
kwin.edgeBarrier = 50;
};
2026-01-07 14:32:28 -05:00
programs.home-manager.enable = true;
2026-02-05 23:02:49 -05:00
}