mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-31 07:03:36 +00:00
94 lines
2.4 KiB
Nix
94 lines
2.4 KiB
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
nixpkgs.overlays = import ../overlays.nix inputs;
|
|
|
|
home = {
|
|
stateVersion = "24.11";
|
|
username = "rae";
|
|
homeDirectory = "/home/rae";
|
|
sessionVariables = {
|
|
BROWSER = "firefox";
|
|
TERM = "kitty";
|
|
};
|
|
file = {
|
|
".twmrc".source = ../../configs/twm;
|
|
".local/share/themes".source = ../../configs/openbox/themes;
|
|
};
|
|
};
|
|
xdg.configFile = {
|
|
"openbox".source = ../../configs/openbox;
|
|
"rmpc".source = ../../configs/rmpc;
|
|
};
|
|
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
shellInit = ''
|
|
set -g fish_greeting
|
|
'';
|
|
};
|
|
git = {
|
|
enable = true;
|
|
userName = "roxwize";
|
|
userEmail = "rae@roxwize.xyz";
|
|
};
|
|
kitty = {
|
|
enable = true;
|
|
font.name = "Fira Code";
|
|
themeFile = "mayukai";
|
|
};
|
|
rofi = {
|
|
enable = true;
|
|
font = "Fira Code Light 11";
|
|
terminal = "kitty";
|
|
};
|
|
vscode = {
|
|
enable = true;
|
|
package = pkgs.vscodium;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
editorconfig.editorconfig
|
|
jnoortheen.nix-ide
|
|
mesonbuild.mesonbuild
|
|
rust-lang.rust-analyzer
|
|
skellock.just
|
|
wakatime.vscode-wakatime
|
|
];
|
|
};
|
|
};
|
|
|
|
services = {
|
|
flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
disabledTrayIcon = true;
|
|
showStartupLaunchMessage = false;
|
|
};
|
|
};
|
|
};
|
|
mpd = {
|
|
enable = true;
|
|
musicDirectory = "/mnt/world/music";
|
|
extraConfig = ''
|
|
audio_output {
|
|
type "pipewire"
|
|
name "main"
|
|
}
|
|
log_file "/tmp/mpd.log"
|
|
'';
|
|
};
|
|
mpdris2 = {
|
|
enable = true;
|
|
mpd.musicDirectory = "/mnt/world/music";
|
|
multimediaKeys = true;
|
|
notifications = true;
|
|
};
|
|
mpris-proxy.enable = true;
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
cursorTheme.name = "Posy's Cursor";
|
|
theme.name = "io.elementary.stylesheet.blueberry";
|
|
};
|
|
}
|