mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 18: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.
|
# 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 = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -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 = {
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user