Compare commits

..

1 Commits

Author SHA1 Message Date
8c942769e3 added input, added service 2025-06-01 14:28:07 -04:00
4 changed files with 12 additions and 4 deletions

View File

@ -12,6 +12,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
ghostty.url = "github:ghostty-org/ghostty";
ucodenix.url = "github:e-tho/ucodenix";
};
outputs = inputs @ {
@ -21,6 +22,7 @@
darwin,
home-manager,
ghostty,
ucodenix,
...
}: let
userName = "wyatt";
@ -63,6 +65,7 @@
};
modules = [
nix-flatpak.nixosModules.nix-flatpak
ucodenix.nixosModules.default
./modules/common
./modules/machine/cloud

View File

@ -39,15 +39,13 @@
# ublock origin
id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";
sha256 = "sha256:0pdh1v0vx1d5vnl1zh7nbk6j1fh4k4hhwp1ljs203icn306lahsn";
# sha256 = lib.fakeSha256;
version = "1.64.0";
version = "1.63.2";
})
(createChromiumExtension {
# bitwarden
id = "nngceckbapebfimnlniiiahkandclblb";
sha256 = "sha256:0jxk3cqmgd5qj8hnw7s0k5s4bfrcmr0w0rckp3x0bmng07azw4gi";
# sha256 = lib.fakeSha256;
version = "2025.5.0";
version = "2025.3.1";
})
];
};

View File

@ -24,6 +24,7 @@ in {
../../graphics
../../pwrMgmt
../../networking/core.nix
../../security/sudo.nix
../../sound/pipewire.nix
../../sound/shairport.nix
../../virtualization/podman.nix
@ -176,5 +177,10 @@ in {
};
};
# security.sudo.needsPassword = false;
# Enable microcode updates
services.ucodenix.enable = true;
system.stateVersion = "24.11";
}

View File

@ -1,3 +1,4 @@
# FIXME: this file is broken but i don't know what is wrong with it
{
config,
lib,