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