Added a minimal config
This commit is contained in:
parent
7f060d8696
commit
b79ab1d3eb
@ -66,10 +66,11 @@
|
|||||||
];
|
];
|
||||||
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
||||||
VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
||||||
GIT="${pkgs.git}";
|
GIT="${pkgs.git}";
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
echo "Vulkan loaded"
|
echo "Vulkan loaded"
|
||||||
|
unset SOURCE_DATE_EPOCH
|
||||||
echo $LD_LIBRARY_PATH
|
echo $LD_LIBRARY_PATH
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|||||||
@ -9,6 +9,7 @@
|
|||||||
frs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#FW16";
|
frs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#FW16";
|
||||||
lrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#light";
|
lrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#light";
|
||||||
lars = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#laptop";
|
lars = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#laptop";
|
||||||
|
minrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixosDots#minimal";
|
||||||
cdd = "cd ~/Developer/nix/NixOSDots";
|
cdd = "cd ~/Developer/nix/NixOSDots";
|
||||||
ncg = "time nix-collect-garbage -d";
|
ncg = "time nix-collect-garbage -d";
|
||||||
nso = "time nix store optimise";
|
nso = "time nix store optimise";
|
||||||
|
|||||||
@ -32,7 +32,23 @@
|
|||||||
widgets = {
|
widgets = {
|
||||||
left = [
|
left = [
|
||||||
{
|
{
|
||||||
colorizedDistroLogo = false;
|
colorizeDistroLogo = false;
|
||||||
|
colorizeSystemIcon = "tertiary";
|
||||||
|
colorizeSystemText = "none";
|
||||||
|
customIconPath = "";
|
||||||
|
enableColorization = true;
|
||||||
|
icon = "noctalia";
|
||||||
|
id = "ControlCenter";
|
||||||
|
useDistroLogo = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
clockColor = "secondary";
|
||||||
|
customFont = "";
|
||||||
|
formatHorizontal = "HH:mm ddd, MMM dd";
|
||||||
|
formatVertical = "HH mm - dd MMM";
|
||||||
|
id = "Clock";
|
||||||
|
tooltipFormat = "HH:mm ddd, MMM dd";
|
||||||
|
useCustomFont = false;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
49
modules_dentritic/hosts/minimal/configuration.nix
Normal file
49
modules_dentritic/hosts/minimal/configuration.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ self, inputs, ... }:
|
||||||
|
{
|
||||||
|
flake = {
|
||||||
|
nixosConfigurations.minimal = inputs.nixpkgs.lib.nixosSystem {
|
||||||
|
modules = [];
|
||||||
|
};
|
||||||
|
|
||||||
|
nixosModules.minimalConfig = { config, pkgs, inputs, ... }: {
|
||||||
|
networking = {
|
||||||
|
hostName = "minimal";
|
||||||
|
networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
pipewire = {
|
||||||
|
enable = true;
|
||||||
|
alsa = {
|
||||||
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
|
pulse = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
users = {
|
||||||
|
users = {
|
||||||
|
violeta = {
|
||||||
|
isNormalUser = true;
|
||||||
|
description = "Violeta Enache";
|
||||||
|
shell = pkgs.zsh;
|
||||||
|
extraGroups = [ "networkmanager" "wheel" "video" "render" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
users = {
|
||||||
|
"violeta" = self.homeModules.comonHomeConfig;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user