Kabbone
d16898adf8
comment out freecad because pyside is broken set python311 to fix nose dependency in unstable
27 lines
408 B
Nix
27 lines
408 B
Nix
#
|
|
# Gnome NixOS & Home manager configuration
|
|
#
|
|
# flake.nix
|
|
# ├─ ./hosts
|
|
# │ └─ ./steamdeck
|
|
# │ └─ home.nix
|
|
# └─ ./modules
|
|
# └─ ./desktop
|
|
# └─ ./steam
|
|
# └─ home.nix *
|
|
#
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
steam
|
|
jq
|
|
appimage-run
|
|
zenity
|
|
unzip
|
|
fuse
|
|
];
|
|
};
|
|
}
|