This commit is contained in:
2026-03-06 21:32:57 -06:00
parent aea1919a44
commit d6e9904bfc
2 changed files with 6 additions and 3 deletions

View File

@@ -93,6 +93,9 @@ master {
new_status = "master" new_status = "master"
} }
scrolling {
}
misc { misc {
disable_hyprland_logo = false disable_hyprland_logo = false
disable_splash_rendering = true disable_splash_rendering = true

View File

@@ -1,6 +1,6 @@
{ ... }: { { inputs, ... }: {
flake.nixosModules.default = { config, lib, pkgs, nixpkgs, ... }: { flake.nixosModules.default = { config, lib, pkgs, ... }: {
options.sysconfig = with lib; { options.sysconfig = with lib; {
host = mkOption { host = mkOption {
@@ -26,7 +26,7 @@
networking.hostName = lib.mkDefault config.sysconfig.host; networking.hostName = lib.mkDefault config.sysconfig.host;
nix = { nix = {
nixPath = [ "nixpkgs=${nixpkgs}" ]; nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
channel.enable = false; channel.enable = false;
settings = { settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];