Skip to content

Commit

Permalink
Merge pull request #3 from Poaclu/dev
Browse files Browse the repository at this point in the history
Update of 15/02/2025
See merge comments
  • Loading branch information
Poaclu authored Feb 15, 2025
2 parents 09d65ad + 30987cd commit 62b0de0
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
result
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ what I do to deploy them (not tested) :
- On NixOS : `nix run nixpkgs#topgrade --config ~/sources/nix-config/packages/topgrade/topgrade.toml`
- other : need to install Topgrade first : `topgrade --config ~/sources/package/topgrade/topgrade.toml`

## TODO
See [TODO](TODO.md) for a list of tasks to be completed.

## Home-manager
See also my [home-manager config](https://github.com/Poaclu/home-manager)
File renamed without changes.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 16 additions & 6 deletions modules/boot.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@

{
options = {
grub.enable = lib.mkOption {
description = "Enable Grub config";
type = lib.types.bool;
default = true;
example = false;
grub = {
enable = lib.mkOption {
description = "Enable Grub config";
type = lib.types.bool;
default = true;
example = false;
};
timeoutStyle = lib.mkOption {
default = "menu";
type = lib.types.enum [ "menu" "countdown" "hidden" ];
description = ''
- `menu` shows the menu.
- `countdown` uses a text-mode countdown.
- `hidden` hides GRUB entirely.'';
};
};

};

config = lib.mkIf config.grub.enable {
Expand All @@ -25,6 +34,7 @@
efiSupport = true;
efiInstallAsRemovable = true;
devices = [ "nodev" ];
timeoutStyle = config.grub.timeoutStyle;
};
};
plymouth.enable = true;
Expand Down
1 change: 1 addition & 0 deletions modules/gaming.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
lutris
mangohud
protonup-qt
protonplus
steam
steam-run
];
Expand Down

0 comments on commit 62b0de0

Please sign in to comment.