organise
This commit is contained in:
parent
be9c2dfb50
commit
dee6a979f2
4 changed files with 32 additions and 12 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
19
modules/software/fonts.nix
Normal file
19
modules/software/fonts.nix
Normal 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"];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
|
@ -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
|
4
modules/software/programs.nix
Normal file
4
modules/software/programs.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
# also opens the TCP and UDP port from 1714 to 1764
|
||||||
|
programs.kdeconnect.enable = true;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue