hyprland, fix nix-shell version and add firefox

This commit is contained in:
Kopatz
2023-12-13 21:28:14 +01:00
parent e71acbfbbf
commit b1c86299c3
7 changed files with 129 additions and 5 deletions

View File

@@ -17,6 +17,5 @@
ffmpeg
nethogs
dig
nss-tools
];
}

View File

@@ -1,7 +1,7 @@
{ config, pkgs, lib, inputs, ... }:
let
patchedWaybar = pkgs.waybar.overrideAttrs (oldAttrs: {
patchedWaybar = pkgs.unstable.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});

View File

@@ -17,6 +17,7 @@ in
fonts.fontDir.enable = true;
fonts.packages = with pkgs; [
corefonts
nerdfonts
noto-fonts
noto-fonts-emoji

View File

@@ -1,4 +1,8 @@
{ inputs, config, ... }:
{
nix.optimise.automatic = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}
nix.registry.nixpkgs.flake = inputs.nixpkgs;
nix.nixPath = ["nixpkgs=flake:nixpkgs"];
home-manager.users.${config.mainUser.name}.home.sessionVariables.NIX_PATH = "nixpkgs=flake:nixpkgs$\{NIX_PATH:+:$NIX_PATH}";
}