mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
init
This commit is contained in:
31
desktop/hyprland/default.nix
Normal file
31
desktop/hyprland/default.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./environment.nix
|
||||
];
|
||||
environment.systemPackages = [
|
||||
pkgs.hyprland
|
||||
pkgs.eww
|
||||
pkgs.wofi
|
||||
pkgs.swaylock-effects
|
||||
pkgs.swayidle
|
||||
];
|
||||
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
|
||||
ubuntu_font_family
|
||||
];
|
||||
enableDefaultPackages = true;
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Ubuntu" ];
|
||||
sansSerif = [ "Ubuntu" ];
|
||||
monospace = [ "Ubuntu" ];
|
||||
};
|
||||
};
|
||||
fontDir.enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user