Fix errors so system builds
This commit is contained in:
parent
73142b1bdf
commit
a43df02076
9 changed files with 45 additions and 66 deletions
|
|
@ -12,8 +12,9 @@
|
|||
"Enables honkai 3rd impact";
|
||||
};
|
||||
|
||||
imports = [ inputs.aagl.nixosModules.default ];
|
||||
|
||||
config = lib.mkIf config.aagl.enable {
|
||||
imports = [ inputs.aagl.nixosModules.default ];
|
||||
nix.settings = inputs.aagl.nixConfig;
|
||||
|
||||
programs.honkers-railway-launcher.enable =
|
||||
|
|
|
|||
|
|
@ -1,12 +1,16 @@
|
|||
{ inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
|
||||
options = {
|
||||
hyprland.enable = lib.mkEnableOption "Enables hyprland";
|
||||
};
|
||||
|
||||
imports = [
|
||||
inputs.hyprland.nixosModules.default
|
||||
];
|
||||
|
||||
config = lib.mkIf config.hyprland.enable {
|
||||
imports = [ inputs.hyprland.nixosModules.default ];
|
||||
programs.hyprland.enable = true;
|
||||
nix.settings = {
|
||||
substituters = [ "https://hyprland.cachix.org" ];
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
wireless.enable = lib.mkEnableOption "Enables wireless";
|
||||
};
|
||||
|
||||
config = lib.mkIf confi.wireless.enable {
|
||||
config = lib.mkIf config.wireless.enable {
|
||||
networking.wireless = {
|
||||
enable = true;
|
||||
userControlled = {
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
alsa.enable = false;
|
||||
alsa.support32Bit = false;
|
||||
pulse.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
pulsemixer
|
||||
];
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
pulsemixer
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
polkit-kde-agent
|
||||
];
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,8 +5,9 @@ let rootPath = ./.; in
|
|||
sops-nix.enable = lib.mkEnableOption "Enables nix-sops for secret management";
|
||||
};
|
||||
|
||||
imports = [ inputs.sops-nix.nixosModules.sops ];
|
||||
|
||||
config = lib.mkIf config.sops-nix.enable {
|
||||
imports = [ inputs.sops-nix.nixosModules.sops ];
|
||||
|
||||
sops = {
|
||||
defaultSopsFile = rootPath + "secrets.yaml";
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
options = {
|
||||
user.name = lib.mkOption { default = "pan"; };
|
||||
user.timezone = lib.mkOption { default = "America/Los_Angeles"; };
|
||||
font.extraFonts = lib.mkOption { default = []; };
|
||||
system.extraFonts = lib.mkOption { default = []; };
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue