initial commit

This commit is contained in:
Dea 2026-01-07 14:32:28 -05:00
commit 5fadb6a6c9
10 changed files with 429 additions and 0 deletions

48
home.nix Normal file
View file

@ -0,0 +1,48 @@
{ 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 = # nvm??
{};
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;
}