mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2026-02-04 12:36:42 -05:00
Fixed Typos
This commit is contained in:
parent
517dd12828
commit
f6cd2a6b68
3 changed files with 8 additions and 5 deletions
|
|
@ -65,6 +65,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
system.stateVersion = "23.11";
|
||||
|
||||
gui.enable = true;
|
||||
discord.enable = true;
|
||||
}
|
||||
];
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
};
|
||||
config = lib.mkIf (config.gui.enable && config.discord.enable) {
|
||||
home-manager.users.${config.user} = {
|
||||
home.packages = with pkgs [
|
||||
discord
|
||||
home.packages = [
|
||||
pkgs.discord
|
||||
];
|
||||
xdg.configFile."discord/settings.json".text = ''
|
||||
{
|
||||
|
|
|
|||
|
|
@ -13,9 +13,11 @@
|
|||
type = lib.types.str;
|
||||
description = "Puny Hooman readable name of the user";
|
||||
};
|
||||
gui = lib.mkEnableOption {
|
||||
description = "Enable graphics.";
|
||||
default = false;
|
||||
gui = {
|
||||
enable = lib.mkEnableOption {
|
||||
description = "Enable graphics.";
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
config =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue