organized

This commit is contained in:
kenji
2025-08-13 09:11:03 -05:00
parent 8aa7f53eca
commit e0ca2aa3bf
4 changed files with 21 additions and 18 deletions
+1 -3
View File
@@ -29,13 +29,11 @@
packages = pkgs: packages = pkgs:
with pkgs; [ with pkgs; [
jellyfin-media-player jellyfin-media-player
usbutils delfin
pciutils
goverlay goverlay
geekbench_6 geekbench_6
gparted gparted
ntfs3g ntfs3g
todoist
feishin feishin
discord discord
xfce.thunar xfce.thunar
-14
View File
@@ -21,20 +21,6 @@
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "${myConfig.nixos.Timezone}"; time.timeZone = "${myConfig.nixos.Timezone}";
environment.systemPackages = with pkgs; [
heroic
pavucontrol
wl-clipboard
delfin
fcitx5
protontricks
fcitx5-mozc-ut
kdePackages.fcitx5-configtool
wget
solaar
dualsensectl
];
console = { console = {
earlySetup = false; earlySetup = false;
font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz"; font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz";
+11
View File
@@ -0,0 +1,11 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
usbutils
pciutils
pavucontrol
wget
dualsensectl
protontricks
wl-clipboard
];
}
+9 -1
View File
@@ -1,5 +1,13 @@
{ {pkgs, ...}: {
imports = [ imports = [
../../packages/firefox/home.nix ../../packages/firefox/home.nix
]; ];
home.packages = with pkgs; [
heroic
fcitx5
fcitx5-mozc-ut
kdePackages.fcitx5-configtool
solaar
];
} }