mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-05 00:33:09 +02:00
group some options
Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
This commit is contained in:
parent
c3bff2bbe4
commit
727636a432
1 changed files with 35 additions and 24 deletions
|
@ -15,10 +15,17 @@ in {
|
|||
|
||||
nix.settings.trusted-users = [ "root" "ultra" ];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = true;
|
||||
};
|
||||
};
|
||||
|
||||
plymouth.enable = true;
|
||||
};
|
||||
|
||||
networking.hostName = "ultrapc"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
@ -124,26 +131,30 @@ in {
|
|||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
wget
|
||||
neovim
|
||||
neofetch
|
||||
podman
|
||||
distrobox
|
||||
cargo
|
||||
nushell
|
||||
nerdfonts
|
||||
steam-run
|
||||
packagekit
|
||||
nix-software-center
|
||||
fish
|
||||
libsForQt5.yakuake
|
||||
libsForQt5.discover
|
||||
wacomtablet
|
||||
git
|
||||
starship
|
||||
];
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
wget
|
||||
neovim
|
||||
neofetch
|
||||
podman
|
||||
distrobox
|
||||
cargo
|
||||
nushell
|
||||
nerdfonts
|
||||
steam-run
|
||||
packagekit
|
||||
nix-software-center
|
||||
fish
|
||||
libsForQt5.yakuake
|
||||
libsForQt5.discover
|
||||
wacomtablet
|
||||
git
|
||||
starship
|
||||
];
|
||||
variables = {
|
||||
NIX_AUTO_RUN = "!";
|
||||
};
|
||||
};
|
||||
programs.fish.enable = true;
|
||||
# programs.nushell.enable = true;
|
||||
# users.defaultUserShell = pkgs.zsh;
|
||||
|
|
Loading…
Reference in a new issue