mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-26 00:19:11 +00:00
profiles: update various profiles
This commit is contained in:
parent
46e12831f4
commit
3438f4392e
@ -42,7 +42,13 @@ in {
|
||||
# Enable Starship prompt.
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = { add_newline = false; };
|
||||
settings = {
|
||||
add_newline = false;
|
||||
hostname = {
|
||||
ssh_only = false;
|
||||
trim_at = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
})
|
||||
|
||||
|
@ -75,7 +75,10 @@ in {
|
||||
# !!! Please add your user to the "libvirtd" group.
|
||||
(lib.mkIf cfg.virtualization.enable {
|
||||
# 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.
|
||||
virtualisation.podman = {
|
||||
|
@ -45,6 +45,9 @@ in {
|
||||
nix-index
|
||||
nix-index-update
|
||||
];
|
||||
|
||||
# Enable running GNOME apps outside GNOME.
|
||||
programs.dconf.enable = true;
|
||||
})
|
||||
|
||||
(lib.mkIf cfg.audio.enable {
|
||||
@ -64,9 +67,6 @@ in {
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
|
||||
# Enable running GNOME apps outside GNOME.
|
||||
programs.dconf.enable = true;
|
||||
})
|
||||
|
||||
(lib.mkIf cfg.fonts.enable {
|
||||
|
Loading…
Reference in New Issue
Block a user