tohru: move qenya home-manager config into default.nix

This commit is contained in:
Katherina Walshe-Grey 2024-10-08 10:53:44 +01:00
parent 84fb7727da
commit acf451a1c9
2 changed files with 14 additions and 17 deletions

View file

@ -30,7 +30,20 @@
"networkmanager" # UI wifi configuration
"dialout" # access to serial ports
];
home-manager.users.qenya.imports = [ ./home.nix ];
home-manager.users.qenya = { pkgs, ... }: {
home.packages = with pkgs; [
keepassxc
amberol
foliate
nicotine-plus
# games
openttd
prismlauncher
nur.repos.qenya.digital-a-love-story
nur.repos.qenya.dont-take-it-personally-babe
];
};
programs.evolution.enable = true; # not in home-manager yet; not declaratively configurable yet
programs.steam.enable = true;

View file

@ -1,16 +0,0 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
keepassxc
amberol
foliate
nicotine-plus
# games
openttd
prismlauncher
nur.repos.qenya.digital-a-love-story
nur.repos.qenya.dont-take-it-personally-babe
];
}