From 2abad4ce3b7291bb4174c9c9397ed052fbb0e251 Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Mon, 18 Dec 2023 15:02:38 +0100 Subject: [PATCH] update again --- flake.lock | 115 +---------------------------------- flake.nix | 7 --- modules/graphical/shared.nix | 1 + 3 files changed, 2 insertions(+), 121 deletions(-) diff --git a/flake.lock b/flake.lock index da869d4..f224add 100644 --- a/flake.lock +++ b/flake.lock @@ -76,7 +76,7 @@ }, "flake-utils": { "inputs": { - "systems": "systems_2" + "systems": "systems" }, "locked": { "lastModified": 1701680307, @@ -134,55 +134,6 @@ "type": "github" } }, - "hyprland": { - "inputs": { - "hyprland-protocols": "hyprland-protocols", - "nixpkgs": [ - "nixpkgs-unstable" - ], - "systems": "systems", - "wlroots": "wlroots", - "xdph": "xdph" - }, - "locked": { - "lastModified": 1702858530, - "narHash": "sha256-54Udd5LVnk1ZFc0BayOLpf3DcOh3NKXutwF7JcY3bLQ=", - "owner": "hyprwm", - "repo": "Hyprland", - "rev": "403fd7d9f6b160dec71456c9fb195a4199134eff", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "Hyprland", - "type": "github" - } - }, - "hyprland-protocols": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1691753796, - "narHash": "sha256-zOEwiWoXk3j3+EoF3ySUJmberFewWlagvewDRuWYAso=", - "owner": "hyprwm", - "repo": "hyprland-protocols", - "rev": "0c2ce70625cb30aef199cb388f99e19a61a6ce03", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprland-protocols", - "type": "github" - } - }, "nix-colors": { "inputs": { "base16-schemes": "base16-schemes", @@ -340,7 +291,6 @@ "inputs": { "agenix": "agenix", "home-manager": "home-manager_2", - "hyprland": "hyprland", "nix-colors": "nix-colors", "nixinate": "nixinate", "nixos-hardware": "nixos-hardware", @@ -350,21 +300,6 @@ } }, "systems": { - "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", - "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default-linux", - "type": "github" - } - }, - "systems_2": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -378,54 +313,6 @@ "repo": "default", "type": "github" } - }, - "wlroots": { - "flake": false, - "locked": { - "host": "gitlab.freedesktop.org", - "lastModified": 1701368958, - "narHash": "sha256-7kvyoA91etzVEl9mkA/EJfB6z/PltxX7Xc4gcr7/xlo=", - "owner": "wlroots", - "repo": "wlroots", - "rev": "5d639394f3e83b01596dcd166a44a9a1a2583350", - "type": "gitlab" - }, - "original": { - "host": "gitlab.freedesktop.org", - "owner": "wlroots", - "repo": "wlroots", - "rev": "5d639394f3e83b01596dcd166a44a9a1a2583350", - "type": "gitlab" - } - }, - "xdph": { - "inputs": { - "hyprland-protocols": [ - "hyprland", - "hyprland-protocols" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1702334919, - "narHash": "sha256-ibOZ3TLjqndGMcj2f+07NFwDWoum4IbzF58byZuJJNg=", - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "rev": "f5c3576c3b6cb1c31a8dfa3e4113f59bfe40cd71", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index b890376..e64fd41 100644 --- a/flake.nix +++ b/flake.nix @@ -16,10 +16,6 @@ }; nixinate.url = "github:matthewcroughan/nixinate"; nix-colors.url = "github:misterio77/nix-colors"; - hyprland = { - url = "github:hyprwm/Hyprland"; - inputs.nixpkgs.follows = "nixpkgs-unstable"; # MESA/OpenGL HW workaround - }; }; outputs = { self, nixpkgs, @@ -30,7 +26,6 @@ home-manager, nixinate, nix-colors, - hyprland, }@inputs: let system = "x86_64-linux"; @@ -110,7 +105,6 @@ ./users/kopatz ### System modules ### ./modules/graphical/plasma.nix - hyprland.nixosModules.default ./modules/graphical/hyprland.nix ./modules/graphical/emulators.nix ./modules/graphical/gamemode.nix @@ -151,7 +145,6 @@ ### User specific ### ./users/kopatz ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) - hyprland.nixosModules.default ./modules/graphical/hyprland.nix ./modules/graphical/shared.nix ./systems/laptop/configuration.nix diff --git a/modules/graphical/shared.nix b/modules/graphical/shared.nix index e669065..232590e 100644 --- a/modules/graphical/shared.nix +++ b/modules/graphical/shared.nix @@ -17,6 +17,7 @@ in fonts.fontDir.enable = true; fonts.packages = with pkgs; [ + uw-ttyp0 corefonts nerdfonts noto-fonts