revamp of nix organization

This commit is contained in:
Haak Saxberg 2021-10-05 23:42:21 -07:00
parent 01a48ac956
commit 4a4014bf59
20 changed files with 369 additions and 129 deletions

22
nix/home/desktop.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, ... }:
let
defaultPkgs = with pkgs; [
calibre
dmenu
firefox
gnomecast
multilockscreen
signal-desktop
slack
vlc
zathura
];
in
{
imports = [(import ./commandline.nix)] ++ [(import ./programs/rofi)];
home = {
packages = defaultPkgs;
};
}