From f5573954b262feaae47c4ae84484da0fcc884646 Mon Sep 17 00:00:00 2001 From: KeksNino Date: Sat, 4 Jul 2026 22:41:57 +0200 Subject: [PATCH] add git config, mount /media/gamedisk, fix rmpc cava --- configuration.nix | 29 ++++++++++++++++++++++++++++- home-manager/mpd.nix | 6 ++++++ packages.nix | 7 ++++++- 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 8ef5aaa..84472e2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,6 +20,19 @@ ]; }; + fileSystems."/media/gamedisk" = { + device = "/dev/disk/by-uuid/5C7C14707C1446E4"; + fsType = "ntfs3"; + options = [ + "uid=1000" + "gid=100" + "rw" + "user" + "exec" + "umask=000" + ]; + }; + nix.settings.experimental-features = [ "nix-command" "flakes" @@ -100,9 +113,23 @@ services.goxlr-utility.enable = true; programs.steam.enable = true; programs.neovim.enable = true; - programs.git.enable = true; programs.tmux.enable = true; programs.bat.enable = true; + programs.git = { + enable = true; + config = { + user = { + name = "KeksNino"; + email = "KeksNino@proton.me"; + }; + init = { + defaultBranch = "main"; + }; + push = { + autoSetupRemote = true; + }; + }; + }; security.rtkit.enable = true; systemd.services."rtkit-daemon".enable = true; diff --git a/home-manager/mpd.nix b/home-manager/mpd.nix index 86f7639..bb1a659 100644 --- a/home-manager/mpd.nix +++ b/home-manager/mpd.nix @@ -12,6 +12,12 @@ type "pipewire" name "Pipewire Sound Server" } + audio_output { + type "fifo" + name "my_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" + } auto_update "yes" ''; network.listenAddress = "/home/user/.config/mpd/socket"; diff --git a/packages.nix b/packages.nix index e9d443e..03cef8e 100644 --- a/packages.nix +++ b/packages.nix @@ -8,7 +8,7 @@ grimblast nitch adwaita-icon-theme - trash-cli + gtrash wl-clipboard unzip p7zip @@ -30,5 +30,10 @@ gcc picard klassy + exiftool + tlrc + libnotify + trash-cli + obsidian ]; }