add deck base config

This commit is contained in:
Yan Lin 2025-10-28 18:37:44 +01:00
parent 9fd8cc2e0d
commit 9102264fcc
5 changed files with 254 additions and 1 deletions

12
hosts/nixos/deck/home.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
# Allow unfree packages in home-manager
nixpkgs.config.allowUnfree = true;
# Import the common NixOS home configuration
imports = [
../home-default.nix
../../../modules/gnome.nix
];
}