Compare commits

...

3 commits

Author SHA1 Message Date
Laureηt 00c364053b
💄 use swayfx, nice blur bro 2023-05-08 13:51:59 +02:00
Laureηt f3e51d7651
⬆️ nix flake update
(icons are broken in waybar)
2023-05-08 13:51:24 +02:00
Laureηt c6f82b1c32
🔥 remove unused imports 2023-05-08 13:50:58 +02:00
4 changed files with 19 additions and 8 deletions

View file

@ -463,11 +463,11 @@
]
},
"locked": {
"lastModified": 1683492229,
"narHash": "sha256-vJgBn/oSW11ujPg+ai92a8DWMssXBpl+/ZeLMS3bDJQ=",
"lastModified": 1683543852,
"narHash": "sha256-aS9qNcg9GwSYFLCWa3Lw+2nVPG11mmQ3B7Oka1hh04M=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "de8ba413c578b68ef602c4f4c5909d9636a5bf92",
"rev": "3f3fa731ad0f99741d4dc98e8e1287b45e30b452",
"type": "github"
},
"original": {
@ -489,11 +489,11 @@
"rust-overlay": "rust-overlay_2"
},
"locked": {
"lastModified": 1683315170,
"narHash": "sha256-v4neNXXjOGingMw76fnXbYbxOK4pZfGA2r/O+cn5btY=",
"lastModified": 1683537316,
"narHash": "sha256-IBBtYJ33BiyIYYXTMhNDPdj6b1TNe3xKaK+9+vjUCMw=",
"owner": "nix-community",
"repo": "lanzaboote",
"rev": "ae49611bd6d1cbfc4f5aaa6352c25324b336542a",
"rev": "39e61a0efe98ff0f87df3d24c002e2673b6499cf",
"type": "github"
},
"original": {

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, config, lib, self, ... }: {
{ ... }: {
config.home.stateVersion = "22.11";
imports = [
./packages.nix

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, config, ... }: {
{ pkgs, ... }: {
nixpkgs.config.allowUnfree = false;
services.mpris-proxy.enable = true;
home.packages = with pkgs; [

View file

@ -14,6 +14,17 @@ in {
};
wayland.windowManager.sway = {
enable = true;
package = (pkgs.swayfx.overrideAttrs (old: {
src = pkgs.fetchFromGitHub {
owner = "WillPower3309";
repo = "swayfx";
rev = "6e53c04abf34599a6c36d1fb57df26d641bee8a1";
sha256 = "sha256-dtAbtiRnY1GL9UuPE9iKwF2ZwxPqaOva196Pl8YARg0=";
};
}));
extraConfig = ''
blur enable
'';
config = rec {
modifier = "Mod4";
terminal = "alacritty";