refactored

for 26.05
This commit is contained in:
alsaiduq-lab 2026-03-02 03:38:24 -07:00
parent e92d8e6616
commit 075cb86d40
34 changed files with 435 additions and 345 deletions

View file

@ -5,7 +5,11 @@
}: {
programs.nixcord = {
enable = true;
discord.enable = true;
discord = {
enable = true;
branch = "canary";
autoscroll.enable = true;
};
config = {
autoUpdateNotification = true;
notifyAboutUpdates = true;
@ -32,12 +36,6 @@
anonymiseFileNames = {
enable = true;
};
autoZipper = {
enable = true;
};
betterInvites = {
enable = true;
};
biggerStreamPreview = {
enable = true;
};
@ -65,6 +63,15 @@
sendTimestamps = {
enable = true;
};
youtubeAdblock = {
enable = true;
};
summaries = {
enable = true;
};
translate = {
enable = true;
};
};
};
};

View file

@ -1,9 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
desmume
# ryujinx
retroarch
waydroid
rpcs3
input-remapper
];

View file

@ -1,6 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
ffmpeg
gpu-screen-recorder
];
}

View file

@ -1,7 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
fish
nix-your-shell
fzf
ripgrep
bat
@ -9,7 +8,7 @@
ugrep
yazi
chafa
btop
(btop.override {cudaSupport = true;})
fastfetch
];
}

View file

@ -12,11 +12,11 @@
];
programs.git = {
enable = true;
includes = [
{path = "${config.home.homeDirectory}/nix/.secrets/.gitconfig";}
];
lfs.enable = true;
settings = {
credential.helper = "store --file=${config.home.homeDirectory}/nix/.secrets/.git-credentials";
credential.helper = "store --file=/run/secrets/git/credentials";
user.name = "alsaiduq-lab";
user.email = "riiidge.racer@gmail.com";
init.defaultBranch = "master";
push.autoSetupRemote = true;
pull.rebase = true;

View file

@ -31,12 +31,12 @@
rebuildCommand = [
"bash"
"-c"
"cd ~/nix && nix flake update && sudo pixos-rebuild switch --flake ~/nix 2>&1"
"cd ~/nix && nix flake update && nix run nixpkgs#nh -- os boot ~/nix 2>&1"
];
gcCommand = [
"bash"
"-c"
"sudo pix-collect-garbage -d 2>&1"
"nix run nixpkgs#nh -- clean all 2>&1"
];
generationsCommand = ["bash" "-c" "sudo nix-env --list-generations --profile /nix/var/nix/profiles/system | wc -l"];
updateInterval = 1800;

View file

@ -1,9 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.thorium];
xdg.dataFile = {
"icons/hicolor" = {
source = "${pkgs.thorium}/share/icons/hicolor";
recursive = true;
};
};
home.packages = with pkgs; [thorium];
}