Added a minimal config
This commit is contained in:
parent
7f060d8696
commit
b79ab1d3eb
@ -70,6 +70,7 @@
|
||||
|
||||
shellHook = ''
|
||||
echo "Vulkan loaded"
|
||||
unset SOURCE_DATE_EPOCH
|
||||
echo $LD_LIBRARY_PATH
|
||||
'';
|
||||
};
|
||||
|
||||
@ -9,6 +9,7 @@
|
||||
frs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#FW16";
|
||||
lrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#light";
|
||||
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";
|
||||
ncg = "time nix-collect-garbage -d";
|
||||
nso = "time nix store optimise";
|
||||
|
||||
@ -32,7 +32,23 @@
|
||||
widgets = {
|
||||
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