feat: rearrange nix modules
This commit is contained in:
parent
572d1d43c0
commit
89f6ab94b4
17 changed files with 28 additions and 28 deletions
38
system/default.nix
Normal file
38
system/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./i18n.nix
|
||||
./nix.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
curl
|
||||
networkmanager
|
||||
neovim
|
||||
];
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
hasklig
|
||||
];
|
||||
fonts.fontconfig.localConf = ''
|
||||
<fontconfig>
|
||||
<alias binding="weak">
|
||||
<family>sans-serif</family>
|
||||
<prefer>
|
||||
<family>emoji</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
<alias binding="weak">
|
||||
<family>serif</family>
|
||||
<prefer>
|
||||
<family>emoji</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
</fontconfig>
|
||||
'';
|
||||
|
||||
services.printing.enable = true;
|
||||
services.fwupd.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue