mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-22 08:24:46 +01:00
25 lines
294 B
Nix
25 lines
294 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
./base.nix
|
|
./code.nix
|
|
./sway.nix
|
|
./colors.nix
|
|
|
|
#./stylix.nix
|
|
|
|
#inputs.nix-colors.homeManagerModules.default
|
|
];
|
|
home.packages = with pkgs; [
|
|
firefox
|
|
gimp
|
|
dconf
|
|
feh
|
|
ripgrep
|
|
eza
|
|
bottom
|
|
killall
|
|
];
|
|
}
|
|
|