feature(modules): split configuration into nix modules and home-manager modules #2
18
modules/home-manager/programs.nix
Normal file
18
modules/home-manager/programs.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
# user packages
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
fastfetch
|
||||
keepassxc
|
||||
nerd-fonts.sauce-code-pro
|
||||
powerline-fonts
|
||||
powerline-symbols
|
||||
screenfetch
|
||||
];
|
||||
|
||||
# services and other software
|
||||
services.syncthing.enable = true;
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user