This commit is contained in:
Ranomier 2025-04-15 17:56:59 +02:00
parent be9c2dfb50
commit dee6a979f2
4 changed files with 32 additions and 12 deletions

View file

@ -1,14 +1,16 @@
{ {
imports = [ imports = [
./audio_video.nix
./flatpak.nix
./game.nix
./obs-studio.nix
./shell.nix
./software.nix
./virt.nix
./android.nix ./android.nix
./audio_video
./flatpak.nix
./fonts.nix
./game.nix
#./mpv.nix #./mpv.nix
./neovim.nix ./neovim.nix
./obs-studio.nix
./packages.nix
./programs.nix
./shell.nix
./virt.nix
]; ];
} }

View file

@ -0,0 +1,19 @@
{pkgs, ...} {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
liberation_ttf
dina-font
proggyfonts
font-awesome
jetbrains-mono
fira-code
fira-code-symbols
#droid-sans-mono
(nerdfonts.override {
fonts = ["FiraCode" "DroidSansMono" "JetBrainsMono"];
})
];
}

View file

@ -1,9 +1,4 @@
{pkgs, ...}: { {pkgs, ...}: {
# also opens the TCP and UDP port from 1714 to 1764
programs.kdeconnect.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# low level stuff # low level stuff
efibootmgr efibootmgr

View file

@ -0,0 +1,4 @@
{
# also opens the TCP and UDP port from 1714 to 1764
programs.kdeconnect.enable = true;
}