This commit is contained in:
alisceon 2026-02-01 21:30:23 +01:00
parent d2b44fae51
commit cc6e5f921f
5 changed files with 19 additions and 15 deletions

18
flake.lock generated
View file

@ -273,11 +273,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1769741972, "lastModified": 1769900590,
"narHash": "sha256-RxSg1EioTWNpoLaykiT1UQKTo/K0PPdLqCyQgNjNqWs=", "narHash": "sha256-I7Lmgj3owOTBGuauy9FL6qdpeK2umDoe07lM4V+PnyA=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "63590ac958a8af30ebd52c7a0309d8c52a94dd77", "rev": "41e216c0ca66c83b12ab7a98cc326b5db01db646",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -295,11 +295,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769968490, "lastModified": 1769977380,
"narHash": "sha256-z2fbTh8x8mRGCnnGgbdSk9ZzpCHrysET+tj0idpseTw=", "narHash": "sha256-QG+DArEHn+B12+kaVFJp4tkhGF8/WEGN3r2Hlpm6UZs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "83d89a5b2a41452e2084bdde6e0a7c254f21f10d", "rev": "a3b57a10ca6fedf5f762ec7c86e61b2e26f7351d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -316,11 +316,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769968490, "lastModified": 1769977380,
"narHash": "sha256-z2fbTh8x8mRGCnnGgbdSk9ZzpCHrysET+tj0idpseTw=", "narHash": "sha256-QG+DArEHn+B12+kaVFJp4tkhGF8/WEGN3r2Hlpm6UZs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "83d89a5b2a41452e2084bdde6e0a7c254f21f10d", "rev": "a3b57a10ca6fedf5f762ec7c86e61b2e26f7351d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -124,13 +124,13 @@
}) # end home-manager }) # end home-manager
]; # end modules ]; # end modules
}; # end tesla-nixos }; # end tesla-nixos
inuc = nixpkgs.lib.nixosSystem { nuc = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
inherit pkgs; inherit pkgs;
specialArgs = sharedSpecialArgs // {}; specialArgs = sharedSpecialArgs // {};
modules = sharedModules ++ [ modules = sharedModules ++ [
./hosts/common/server.nix ./hosts/common/server.nix
./hosts/inuc/configuration.nix ./hosts/nuc/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
({ config, ...}: { ({ config, ...}: {
home-manager.users.alisceon.imports = [ home-manager.users.alisceon.imports = [

View file

@ -107,8 +107,8 @@
hostname = "10.40.0.2"; hostname = "10.40.0.2";
user = "pi"; user = "pi";
}; };
"inuc" = { "nuc" = {
hostname = "inuc.home.the.malice.zone"; hostname = "nuc.home.the.malice.zone";
}; };
"tsla-exporter-bridge" = { "tsla-exporter-bridge" = {
hostname = "alma02.lab.the.malice.zone"; hostname = "alma02.lab.the.malice.zone";

View file

@ -4,7 +4,7 @@
uwsm = "${pkgs.uwsm}/bin/uwsm-app --"; uwsm = "${pkgs.uwsm}/bin/uwsm-app --";
swaymsg = "${pkgs.sway}/bin/swaymsg"; swaymsg = "${pkgs.sway}/bin/swaymsg";
lock = "${pkgs.swaylock}/bin/swaylock --daemonize"; lock = "${pkgs.swaylock}/bin/swaylock --daemonize";
term = "${pkgs.foot}/bin/foot"; term = "${pkgs.foot}/bin/footclient";
notify = "${pkgs.libnotify}/bin/notify-send"; notify = "${pkgs.libnotify}/bin/notify-send";
nag = "${pkgs.sway}/bin/swaynag --edge bottom"; nag = "${pkgs.sway}/bin/swaynag --edge bottom";
dmenu = "${pkgs.rofi-unwrapped}/bin/rofi"; dmenu = "${pkgs.rofi-unwrapped}/bin/rofi";
@ -450,6 +450,10 @@
enable = true; enable = true;
server.enable = true; server.enable = true;
settings = { settings = {
main = {
app-id="footclient";
workers = 32;
};
bell = { bell = {
system = "no"; system = "no";
}; };

View file

@ -7,7 +7,7 @@
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
imports = imports =
[ ./hardware-configuration.nix ]; [ ./hardware-configuration.nix ];
networking.hostName = "inuc"; networking.hostName = "nuc";
boot.initrd.enable = true; boot.initrd.enable = true;
boot.loader = { boot.loader = {
systemd-boot = { systemd-boot = {