e8086e8528
plugins, new cursor, light/dark themes, new app launcher, ...
14 lines
348 B
Nix
14 lines
348 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [ inputs.walker.homeManagerModules.default ];
|
|
|
|
programs.walker = {
|
|
enable = true;
|
|
runAsService = true;
|
|
|
|
# Using default theme - clean dark theme with good defaults
|
|
# You can customize later by copying from:
|
|
# https://github.com/abenz1267/walker/tree/master/resources/themes/default
|
|
};
|
|
}
|