unstable channel

This commit is contained in:
tristan 2023-04-14 10:24:24 +01:00
parent 31d935cd37
commit 7a86dc748a
4 changed files with 19 additions and 118 deletions

View file

@ -6,16 +6,19 @@
{ config, pkgs, ... }:
{
#required for upgrade to unstable?
nixpkgs.overlays = [
(self: super: {fcitx-engines = pkgs.fcitx5;})
];
imports = [
./hardware-configuration.nix
];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
# temporary unstable hyprland release
substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
};
nix.settings.trusted-users = [ "root" "tristan" ];
@ -69,9 +72,9 @@
};
};
qt5.enable = true;
qt5.platformTheme = "gtk2";
qt5.style = "gtk2";
qt.enable = true;
qt.platformTheme = "gtk2";
qt.style = "gtk2";
services.printing.enable = true;
@ -84,6 +87,7 @@
initialPassword = "pass";
shell = pkgs.fish;
};
programs.fish.enable = true;
environment.variables = {
EDITOR = "nvim";