Compare commits

..

No commits in common. "0bcfa86e5b8f3f332b7a14411f60dc624877163c" and "01bc1610bf974f5808df43bbd93c38f02e306de2" have entirely different histories.

4 changed files with 5 additions and 26 deletions

View File

@ -3,7 +3,6 @@
./host/bluetooth.nix ./host/bluetooth.nix
./host/bootloader.nix ./host/bootloader.nix
./host/console.nix ./host/console.nix
./host/db.nix
./host/env.nix ./host/env.nix
./host/gamemode.nix ./host/gamemode.nix
./host/gpg.nix ./host/gpg.nix
@ -19,7 +18,6 @@
services = { services = {
udisks2.enable = true; udisks2.enable = true;
fstrim.enable = true; fstrim.enable = true;
upower.enable = true;
}; };
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
} }

View File

@ -1,10 +0,0 @@
{ lib, ... }:{
services.postgresql = {
enable = true;
ensureDatabases = [ "mydatabase" ];
authentication = lib.mkOverride 10 ''
#type database DBuser auth-method
local all all trust
'';
};
}

View File

@ -91,7 +91,7 @@ window.Bar {
.AudioSlider icon { margin-left: 8px; } .AudioSlider icon { margin-left: 8px; }
.Workspaces, .Wifi, .Layout, .Media, .SysTray, .AudioSlider, .Battery, .Time { .Workspaces, .Layout, .Media, .SysTray, .AudioSlider, .Time {
@extend %item; @extend %item;
} }
} }

View File

@ -1,6 +1,5 @@
import { bind } from "astal" import { bind } from "astal"
import Network from "gi://AstalNetwork" import Network from "gi://AstalNetwork"
import { execAsync } from "astal/process"
export default function Wifi() { export default function Wifi() {
const network = Network.get_default() const network = Network.get_default()
@ -8,19 +7,11 @@ export default function Wifi() {
return <box visible={wifi.as(Boolean)}> return <box visible={wifi.as(Boolean)}>
{wifi.as(wifi => wifi && ( {wifi.as(wifi => wifi && (
<box> <icon
<button tooltipText={bind(wifi, "ssid").as(String)}
className="Wifi" className="Wifi"
onClicked={() => {execAsync("kitty nmtui")}}> icon={bind(wifi, "iconName")}
<icon />
tooltipText={bind(wifi, "ssid").as(String)}
icon={bind(wifi, "iconName")}
/>
<label
label={bind(wifi, "ssid")}
/>
</button>
</box>
))} ))}
</box> </box>
} }