Skip to content

Commit

Permalink
fix: deadnix config
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Ortega <[email protected]>
  • Loading branch information
M0NsTeRRR committed Sep 22, 2024
1 parent 5f5f09e commit 8c67e8d
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deadnix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ jobs:
name: deadnix
- name: Run deadnix
uses: astro/deadnix-action@main
with:
flags: "--exclude **/hardware-configuration.nix ./flake.nix"
1 change: 0 additions & 1 deletion home/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
pkgs,
home-manager-unstable,
config,
username,
...
}:
Expand Down
2 changes: 1 addition & 1 deletion home/user/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, username, ... }:
{ lib, ... }:
{
imports = [
./config.nix
Expand Down
1 change: 0 additions & 1 deletion home/user/programs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{ username, ... }:
{
imports = [
./firefox.nix
Expand Down
2 changes: 1 addition & 1 deletion system/modules/audio.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, username, ... }:
{ username, ... }:
{
users.users.${username} = {
extraGroups = [ "audio" ];
Expand Down
1 change: 0 additions & 1 deletion system/modules/game.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{ pkgs, ... }:
{
programs = {
steam = {
Expand Down
3 changes: 1 addition & 2 deletions system/modules/nixsettings.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, pkgs, config, ... }:
{ lib, config, ... }:
{
documentation.nixos.enable = false;

Expand All @@ -18,7 +18,6 @@
options = "--delete-older-than 7d";
};
};


nixpkgs.config.allowUnfreePredicate =
pkg:
Expand Down
2 changes: 1 addition & 1 deletion system/modules/video.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, username, ... }:
{ config, ... }:
{
# Enable NVIDIA
services.xserver.videoDrivers = [ "nvidia" ];
Expand Down

0 comments on commit 8c67e8d

Please sign in to comment.