mirror of
https://git.gay/sneexy/nixos.git
synced 2026-01-11 13:13:15 -08:00
116 lines
2.5 KiB
Nix
116 lines
2.5 KiB
Nix
|
|
# This is your home-manager configuration file
|
||
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
||
|
|
{
|
||
|
|
inputs,
|
||
|
|
outputs,
|
||
|
|
lib,
|
||
|
|
osConfig,
|
||
|
|
config,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
# You can import other home-manager modules here
|
||
|
|
imports = [
|
||
|
|
# If you want to use modules your own flake exports (from modules/home-manager):
|
||
|
|
# outputs.homeManagerModules.example
|
||
|
|
|
||
|
|
# Or modules exported from other flakes (such as nix-colors):
|
||
|
|
# inputs.nix-colors.homeManagerModules.default
|
||
|
|
|
||
|
|
# You can also split up your configuration and import pieces of it here:
|
||
|
|
# ./nvim.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
nixpkgs = {
|
||
|
|
# Configure your nixpkgs instance
|
||
|
|
config = {
|
||
|
|
# Disable if you don't want unfree packages
|
||
|
|
allowUnfree = true;
|
||
|
|
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
||
|
|
allowUnfreePredicate = _: true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
# meeee :333
|
||
|
|
# if this ain't you, you should probably change this
|
||
|
|
home = {
|
||
|
|
username = "ruben";
|
||
|
|
homeDirectory = "/home/ruben";
|
||
|
|
};
|
||
|
|
|
||
|
|
# this is a got damn NEO VIMME HOUSE !!
|
||
|
|
home.sessionVariables = {
|
||
|
|
EDITOR = "nvim";
|
||
|
|
};
|
||
|
|
|
||
|
|
# fuzzy command finder, required by a decent amount of things
|
||
|
|
programs.fzf = {
|
||
|
|
enable = true;
|
||
|
|
enableZshIntegration = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
# my preferred shell customized to my needs
|
||
|
|
# TODO: theres only oh-my-zsh support out of the box, figure out
|
||
|
|
# how to customize sheldon and starship
|
||
|
|
programs.zsh = {
|
||
|
|
enable = true;
|
||
|
|
history.size = 50000;
|
||
|
|
syntaxHighlighting.enable = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
programs.git = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
userName = "Sneexy";
|
||
|
|
userEmail = "sneexy@disroot.org";
|
||
|
|
|
||
|
|
signing.signByDefault = true;
|
||
|
|
#signing.key = ""; # TODO: fill this out
|
||
|
|
|
||
|
|
extraConfig = {
|
||
|
|
commit.verbose = true;
|
||
|
|
init.defaultBranch = "main";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
xdg.userDirs.enable = true;
|
||
|
|
|
||
|
|
services.mpd = {
|
||
|
|
enable = true;
|
||
|
|
extraConfig = ''
|
||
|
|
''audio_output {
|
||
|
|
type "pipewire"
|
||
|
|
name "PipeWire"
|
||
|
|
}''
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
|
||
|
|
# Add stuff for your user as you see fit:
|
||
|
|
# programs.neovim.enable = true;
|
||
|
|
home.packages = with pkgs; [
|
||
|
|
btop
|
||
|
|
sheldon
|
||
|
|
starship
|
||
|
|
zoxide
|
||
|
|
fzf
|
||
|
|
bat
|
||
|
|
duf
|
||
|
|
fd
|
||
|
|
delta
|
||
|
|
lsd
|
||
|
|
ripgrep
|
||
|
|
sd
|
||
|
|
yt-dlp
|
||
|
|
];
|
||
|
|
|
||
|
|
# Enable home-manager and git
|
||
|
|
programs.home-manager.enable = true;
|
||
|
|
programs.git.enable = true;
|
||
|
|
|
||
|
|
# Nicely reload system units when changing configs
|
||
|
|
systemd.user.startServices = "sd-switch";
|
||
|
|
|
||
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||
|
|
# basically: don't touch this.
|
||
|
|
home.stateVersion = "23.05";
|
||
|
|
}
|