diff --git a/.gitignore b/.gitignore index 320a778..5d95e90 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/hostname +/hostname/flake.nix diff --git a/flake.lock b/flake.lock index 3aa73de..ce2ac42 100644 --- a/flake.lock +++ b/flake.lock @@ -2,8 +2,8 @@ "nodes": { "currentSystem": { "locked": { - "lastModified": 1717720072, - "narHash": "sha256-JAMWMGlJFDt+7bbpWIDoRzvL0/A7YY6Wg6xENX9ohUY=", + "lastModified": 1717720375, + "narHash": "sha256-nbltg3gor6ZPWg1zQXGAgIHqJ05lfvJmwaJRjI+HYws=", "path": "/etc/nixos/hostname", "type": "path" }, diff --git a/hostname/flake.nix.example b/hostname/flake.nix.example new file mode 100644 index 0000000..be95f50 --- /dev/null +++ b/hostname/flake.nix.example @@ -0,0 +1,6 @@ +{ + outputs { ... }: { + # Replace with system hostname and rename to flake.nix + hostname = ""; + }; +} diff --git a/modules/home/sway.nix b/modules/home/sway.nix index c21cf0b..d5b383f 100644 --- a/modules/home/sway.nix +++ b/modules/home/sway.nix @@ -170,6 +170,7 @@ in commands = [ { criteria = { class = "vesktop"; }; command = "opacity 0.9"; } { criteria = { app_id = "Alacritty"; }; command = "opacity 0.9"; } + { criteria = { class = "feishin"; }; command = "opacity 0.9"; } { criteria = { class = "gamescope"; }; command = "fullscreen"; } { criteria = { app_id = "gamescope"; }; command = "fullscreen"; } { criteria = { app_id = "mpv"; }; command = "fullscreen"; } @@ -206,11 +207,6 @@ in client.urgent $urgent-bg-color $urgent-bg-color $text-color #4B5177 smart_gaps inverse_outer - - bar { - swaybar_command waybar - } - ''; }; };