Sun Aug 14 06:35:44 PM CEST 2022

This commit is contained in:
Alexander Szczepanski
2022-08-14 18:35:44 +02:00
parent 6d9f59e21b
commit 6a5607ed9c
9 changed files with 30 additions and 10 deletions

View File

@ -0,0 +1,44 @@
{ config, pkgs, lib, ... }:
let
unstable = import <nixos-unstable> { config.allowUnfree = true; };
in
{
imports = [ <home-manager/nixos> ];
home-manager.users.alex = { pkgs, ... }: {
home = {
packages = with unstable.pkgs; [
bitwarden
cura
cypress
discord
etcher
firefox
font-manager
freecad
fslint
homebank
insomnia
kdenlive
libreoffice
lutris
# mangohud
meld
# obs-studio
pinta
prusa-slicer
rpi-imager
signal-desktop
solaar
spotify
steam
teams
virtmanager
vulkan-tools
wine
winetricks
];
};
};
}