.
This commit is contained in:
parent
e01ffa4cec
commit
becdaee408
8 changed files with 276 additions and 18 deletions
|
@ -1,11 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
{ inputs, options, config, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (builtins) toJSON;
|
||||
inherit (lib.attrsets) attrValues mapAttrsToList;
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
|
|
|
@ -13,9 +13,11 @@ in
|
|||
|
||||
config = mkMerge [
|
||||
(mkIf config.modules.develop.rust.enable {
|
||||
nixpkgs.overlays = [inputs.rust.overlays.default];
|
||||
|
||||
user.packages = attrValues {
|
||||
rust-package = pkgs.rust-bin.nightly.latest.default;
|
||||
inherit (pkgs) rust-analyser rust-script;
|
||||
rust-package = pkgs.rust-bin.stable.latest.default;
|
||||
inherit (pkgs) rust-analyzer rust-script;
|
||||
};
|
||||
|
||||
environment.shellAliases = {
|
||||
|
|
|
@ -15,7 +15,7 @@ in
|
|||
|
||||
gtk = {
|
||||
name = "everforrest-Dark-BL";
|
||||
package = pkgs.my.everforrest-gtk;
|
||||
# package = pkgs.my.everforrest-gtk;
|
||||
};
|
||||
|
||||
iconTheme = {
|
||||
|
|
|
@ -12,7 +12,7 @@ in
|
|||
enable = mkEnableOption "enable podman";
|
||||
};
|
||||
|
||||
config = mkIf options.modules.virtualisation.podman.enable {
|
||||
config = mkIf config.modules.virtualisation.podman.enable {
|
||||
virtualisation = {
|
||||
containers.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue