nix mineral
This commit is contained in:
parent
14e7b9d2b1
commit
c74e3a056e
@ -170,6 +170,13 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nix-mineral = {
|
||||
url = "github:cynicsketch/nix-mineral"; # Refers to the main branch and is updated to the latest commit when you use "nix flake update"
|
||||
# url = "github:cynicsketch/nix-mineral/v0.1.6-alpha" # Refers to a specific tag and follows that tag until you change it
|
||||
# url = "github:cynicsketch/nix-mineral/cfaf4cf15c7e6dc7f882c471056b57ea9ea0ee61" # Refers to a specific commit and follows that until you change it
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Nix on Droid Configuration
|
||||
nixpkgs-droid.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
../nixos/system/system.nix
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
"${inputs.nix-mineral}/nix-mineral.nix"
|
||||
];
|
||||
|
||||
# Home manager
|
||||
@ -82,7 +83,10 @@
|
||||
programs = {
|
||||
kdeconnect.enable = true;
|
||||
wireshark.enable = true;
|
||||
auto-cpufreq.enable = if config.sys.desktop.plasma.enable then false else true;
|
||||
auto-cpufreq.enable =
|
||||
if config.sys.desktop.plasma.enable
|
||||
then false
|
||||
else true;
|
||||
nix-ld.dev.enable = true;
|
||||
};
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user