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"
}
scrolling {
}
misc {
disable_hyprland_logo = false
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; {
host = mkOption {
@@ -26,7 +26,7 @@
networking.hostName = lib.mkDefault config.sysconfig.host;
nix = {
nixPath = [ "nixpkgs=${nixpkgs}" ];
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
channel.enable = false;
settings = {
experimental-features = [ "nix-command" "flakes" ];