1
0
Fork 0

fix(nix): change framework hostname

This commit is contained in:
Lucas Sta Maria 2025-08-19 18:37:38 +08:00
parent 7af7c629c5
commit 001c77024a
Signed by: lucas
GPG key ID: F07FB16A826E3B47
4 changed files with 12 additions and 12 deletions

View file

@ -17,14 +17,14 @@
outputs = { self, nixpkgs, home-manager, flake-utils, agenix, ... }@inputs: outputs = { self, nixpkgs, home-manager, flake-utils, agenix, ... }@inputs:
let inherit (self) outputs; let inherit (self) outputs;
in { in {
nixosConfigurations.framework = nixpkgs.lib.nixosSystem { nixosConfigurations.minji = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inputs = inputs; }; specialArgs = { inputs = inputs; };
modules = [ modules = [
home-manager.nixosModules.default home-manager.nixosModules.default
agenix.nixosModules.default agenix.nixosModules.default
./nix/hosts/common/sys.nix ./nix/hosts/common/sys.nix
./nix/hosts/framework/sys.nix ./nix/hosts/minji/sys.nix
]; ];
}; };

View file

@ -220,7 +220,7 @@
duskTime = "20:00-21:00"; duskTime = "20:00-21:00";
temperature = { temperature = {
day = 6500; day = 6500;
night = 3500; night = 2500;
}; };
}; };
@ -287,8 +287,10 @@
programs.swaylock = { programs.swaylock = {
enable = true; enable = true;
settings = { settings = { color = "000000"; };
color = "000000"; };
};
programs.waybar = {
enable = true;
}; };
} }

View file

@ -1,8 +1,8 @@
{ inputs, config, pkgs, lib, ... }: { { inputs, config, pkgs, lib, ... }: {
imports = [ ./hw.nix ../../modules/swaynotificationcenter.nix ]; imports = [ ./hw.nix ../../modules/swaynotificationcenter.nix ];
networking.hostName = "framework"; networking.hostName = "minji";
time.timeZone = "America/New_York"; time.timeZone = "Asia/Singapore";
# Bootloader # Bootloader
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
@ -120,7 +120,7 @@
CC = "gcc"; CC = "gcc";
LSP_USE_PLISTS = "true"; LSP_USE_PLISTS = "true";
MOZ_USE_XINPUT2 = "1"; MOZ_USE_XINPUT2 = "1";
RUSTICL_ENABLE="radeonsi"; RUSTICL_ENABLE = "radeonsi";
ROC_ENABLE_PRE_VEGA = "1"; ROC_ENABLE_PRE_VEGA = "1";
QT_QPA_PLATFORM = "xcb"; QT_QPA_PLATFORM = "xcb";
}; };
@ -153,9 +153,7 @@
configDir = "/home/priime/.config/syncthing"; configDir = "/home/priime/.config/syncthing";
overrideDevices = true; overrideDevices = true;
overrideFolders = false; overrideFolders = false;
settings = { settings = { };
gui = { user = "priime"; };
};
}; };
# Programs # Programs