chore: update flake & niri blur

This commit is contained in:
danny 2026-03-06 17:06:53 +08:00
parent 601dfb9217
commit 98b4f598f8
36 changed files with 516 additions and 317 deletions

View file

@ -8,13 +8,13 @@ in
{
systemConf = {
inherit hostname username;
niri.enable = true;
enableHomeManager = true;
windowManager = "niri";
};
imports = [
../../modules/presets/basic.nix
../public/dn
../public/dn/ntfy.nix
../public/dn/presets/local.nix
./common
./games
./home
@ -24,6 +24,9 @@ in
./utility
./virtualisation
./network
../../modules/shells/noctalia
../../modules/sunshine.nix
../../modules/card-reader.nix
];
users.users."${username}".openssh.authorizedKeys.keys = [

View file

@ -1,4 +1,5 @@
{
pkgs,
config,
lib,
...
@ -10,6 +11,10 @@ let
in
{
home-manager.users."${username}" = {
home.packages = with pkgs; [
mattermost-desktop
];
home.sessionVariables = {
BROWSER = mkForce "chromium";
};
@ -27,9 +32,9 @@ in
}
];
programs.hyprlock.monitors = [
"LG Display"
];
programs.noctalia-shell = {
settings = { };
};
programs.chromium = {
enable = true;
@ -55,34 +60,7 @@ in
imports = [
../../../../home/presets/basic.nix
# waybar
(import ../../../../home/user/waybar.nix {
settings = [
{
output = "eDP-1";
height = 46;
modules-left = [
"custom/os"
"hyprland/workspaces"
"clock"
"mpris"
];
modules-right = [
"wlr/taskbar"
"temperature"
"custom/wallRand"
"custom/wireguard"
"custom/recording"
"idle_inhibitor"
"network"
"pulseaudio"
"battery"
"custom/swaync"
];
}
];
})
../../../../home/user/zellij.nix
];
};
}

View file

@ -1,5 +1,5 @@
{
imports = [
../../../modules/wireguard.nix
# ../../../modules/wireguard.nix
];
}