system
This commit is contained in:
parent
c4eed0e32f
commit
44fc8ce456
3 changed files with 13 additions and 0 deletions
3
system/bluetooth.nix
Normal file
3
system/bluetooth.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{...}: {
|
||||
hardware.bluetooth.enable = true;
|
||||
}
|
||||
6
system/fonts.nix
Normal file
6
system/fonts.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{...}: {
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.jetbrains-mono
|
||||
twemoji-color-font
|
||||
];
|
||||
}
|
||||
4
system/zsh.nix
Normal file
4
system/zsh.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue