profiles: update various profiles

This commit is contained in:
Gabriel Arazas 2022-06-09 13:00:07 +08:00
parent 46e12831f4
commit 3438f4392e
3 changed files with 14 additions and 5 deletions

View File

@ -42,7 +42,13 @@ in {
# Enable Starship prompt. # Enable Starship prompt.
programs.starship = { programs.starship = {
enable = true; enable = true;
settings = { add_newline = false; }; settings = {
add_newline = false;
hostname = {
ssh_only = false;
trim_at = "";
};
};
}; };
}) })

View File

@ -75,7 +75,10 @@ in {
# !!! Please add your user to the "libvirtd" group. # !!! Please add your user to the "libvirtd" group.
(lib.mkIf cfg.virtualization.enable { (lib.mkIf cfg.virtualization.enable {
# virt-manager as my frontend. # virt-manager as my frontend.
environment.systemPackages = [ pkgs.virt-manager ]; environment.systemPackages = with pkgs; [
distrobox
virt-manager
];
# Enable podman just as my main container runtime or something. # Enable podman just as my main container runtime or something.
virtualisation.podman = { virtualisation.podman = {

View File

@ -45,6 +45,9 @@ in {
nix-index nix-index
nix-index-update nix-index-update
]; ];
# Enable running GNOME apps outside GNOME.
programs.dconf.enable = true;
}) })
(lib.mkIf cfg.audio.enable { (lib.mkIf cfg.audio.enable {
@ -64,9 +67,6 @@ in {
pulse.enable = true; pulse.enable = true;
jack.enable = true; jack.enable = true;
}; };
# Enable running GNOME apps outside GNOME.
programs.dconf.enable = true;
}) })
(lib.mkIf cfg.fonts.enable { (lib.mkIf cfg.fonts.enable {