adding hyprland cachix
This commit is contained in:
parent
7d97a7825c
commit
f1307d56ed
|
@ -37,7 +37,6 @@ Both include the home-manager module. Primarily I chose that route so that I cou
|
||||||
};
|
};
|
||||||
hyprland = {
|
hyprland = {
|
||||||
url = "github:hyprwm/Hyprland";
|
url = "github:hyprwm/Hyprland";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
};
|
||||||
eww = {
|
eww = {
|
||||||
url = "github:elkowar/eww";
|
url = "github:elkowar/eww";
|
||||||
|
@ -173,6 +172,12 @@ nix = {
|
||||||
I use plasma and awesome mostly as my desktop. Also all desktops will likely need ntfs support in order to work with windows devices.
|
I use plasma and awesome mostly as my desktop. Also all desktops will likely need ntfs support in order to work with windows devices.
|
||||||
#+NAME: desktop
|
#+NAME: desktop
|
||||||
#+begin_src nix
|
#+begin_src nix
|
||||||
|
# This adds hyprland cache to cachix
|
||||||
|
nix.settings = {
|
||||||
|
substituters = ["https://hyprland.cachix.org"];
|
||||||
|
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||||
|
};
|
||||||
|
|
||||||
boot.supportedFilesystems = [ "ntfs" ];
|
boot.supportedFilesystems = [ "ntfs" ];
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
};
|
};
|
||||||
hyprland = {
|
hyprland = {
|
||||||
url = "github:hyprwm/Hyprland";
|
url = "github:hyprwm/Hyprland";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
};
|
||||||
eww = {
|
eww = {
|
||||||
url = "github:elkowar/eww";
|
url = "github:elkowar/eww";
|
||||||
|
|
|
@ -85,6 +85,12 @@
|
||||||
Option "TripleBuffer" "on"
|
Option "TripleBuffer" "on"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# This adds hyprland cache to cachix
|
||||||
|
nix.settings = {
|
||||||
|
substituters = ["https://hyprland.cachix.org"];
|
||||||
|
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||||
|
};
|
||||||
|
|
||||||
boot.supportedFilesystems = [ "ntfs" ];
|
boot.supportedFilesystems = [ "ntfs" ];
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -78,6 +78,12 @@
|
||||||
|
|
||||||
services.xserver.videoDrivers = ["intel"];
|
services.xserver.videoDrivers = ["intel"];
|
||||||
|
|
||||||
|
# This adds hyprland cache to cachix
|
||||||
|
nix.settings = {
|
||||||
|
substituters = ["https://hyprland.cachix.org"];
|
||||||
|
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||||
|
};
|
||||||
|
|
||||||
boot.supportedFilesystems = [ "ntfs" ];
|
boot.supportedFilesystems = [ "ntfs" ];
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue