mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
22 lines
363 B
Nix
22 lines
363 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs = {
|
||
|
fish.enable = true;
|
||
|
|
||
|
starship = {
|
||
|
enable = true;
|
||
|
enableTransience = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/fish/config.fish
|
||
|
assertFileRegex home-files/.config/fish/config.fish 'enable_transience'
|
||
|
'';
|
||
|
};
|
||
|
}
|