Compare commits

...

2 Commits

Author SHA1 Message Date
9f79a40354 Add lutris 2024-08-16 09:46:20 -07:00
3da8659710 Allow unfree in home-manager 2024-08-16 09:46:09 -07:00
2 changed files with 10 additions and 0 deletions

View File

@@ -96,8 +96,11 @@ with import <nixpkgs> {};
home.sessionPath = [ home.sessionPath = [
]; ];
nixpkgs.config.allowUnfree = true;
imports = [ imports = [
./modules/applications/emacs/default.nix ./modules/applications/emacs/default.nix
./modules/games/lutris/default.nix
./modules/window_managers/hyprland/default.nix ./modules/window_managers/hyprland/default.nix
]; ];

View File

@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
home.packages = [
pkgs.lutris
];
}