Compare commits
10 Commits
51796232ad
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a433f8fdde | ||
|
|
39a2703698 | ||
|
|
9c5f8eff46 | ||
|
|
3d45ff4c86 | ||
|
|
a82d1f592c | ||
|
|
f5a23fc052 | ||
|
|
6ebbbe16a7 | ||
|
|
debeda83a6 | ||
|
|
172714fd14 | ||
|
|
d65e7d9e57 |
@@ -4,6 +4,6 @@ let
|
||||
in
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
element-desktop
|
||||
fluffychat
|
||||
];
|
||||
}
|
||||
|
||||
@@ -48,6 +48,20 @@ in
|
||||
variant = "";
|
||||
};
|
||||
|
||||
# Podman service setup
|
||||
virtualisation.containers.enable = true;
|
||||
virtualisation = {
|
||||
podman = {
|
||||
enable = true;
|
||||
|
||||
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
||||
dockerCompat = true;
|
||||
|
||||
# Required for containers under podman-compose to be able to talk to each other.
|
||||
defaultNetwork.settings.dns_enabled = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "de-latin1";
|
||||
|
||||
@@ -56,11 +70,53 @@ in
|
||||
networkmanager
|
||||
epiphany
|
||||
nodejs_24
|
||||
podman
|
||||
dive
|
||||
podman-tui
|
||||
podman-compose
|
||||
gmp
|
||||
gmp.dev
|
||||
pkg-config
|
||||
];
|
||||
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
stdenv.cc.cc
|
||||
zlib
|
||||
gmp
|
||||
openssl
|
||||
curl
|
||||
glib
|
||||
gtk3
|
||||
libGL
|
||||
xorg.libX11
|
||||
appimage-run
|
||||
];
|
||||
};
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
settings = {
|
||||
General = {
|
||||
# Shows battery charge of connected devices on supported
|
||||
# Bluetooth adapters. Defaults to 'false'.
|
||||
Experimental = true;
|
||||
# When enabled other devices can connect faster to us, however
|
||||
# the tradeoff is increased power consumption. Defaults to
|
||||
# 'false'.
|
||||
FastConnectable = true;
|
||||
};
|
||||
Policy = {
|
||||
# Enable all controllers when they are found. This includes
|
||||
# adapters present on start as well as adapters that are plugged
|
||||
# in later on. Defaults to 'true'.
|
||||
AutoEnable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh.enable = true;
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
@@ -8,8 +8,8 @@ let
|
||||
|
||||
dotfiles_waybar = pkgs.fetchgit {
|
||||
url = "https://git.nichkara.eu/dotfiles/waybar";
|
||||
rev = "47a5d2b7795fcdb26bff3a91864d19158cfc5c5c";
|
||||
sha256 = "sha256-0S0S+qIEa20GWeHGEOzji6rPQPPzDvyZFpyHewLuxKw=";
|
||||
rev = "cd3d5d8a97f9fbc1cc8a69fc9e570dfcf669dce7";
|
||||
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc=";
|
||||
};
|
||||
|
||||
profile = import ../../profile.nix;
|
||||
@@ -28,6 +28,8 @@ in
|
||||
pamixer
|
||||
pavucontrol
|
||||
brightnessctl
|
||||
python313Packages.requests
|
||||
networkmanagerapplet
|
||||
];
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
|
||||
@@ -15,8 +15,8 @@ in
|
||||
|
||||
users.users.${profile.username} = {
|
||||
isNormalUser = true;
|
||||
description = "Nina Chloé Kassandra";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
|
||||
description = "Nina Chlóe Kassandra";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp" "uucp" "dialout"];
|
||||
packages = with pkgs; [];
|
||||
shell = pkgs.zsh;
|
||||
hashedPassword = profile.hashed-password;
|
||||
@@ -36,6 +36,7 @@ in
|
||||
push = {
|
||||
autoSetupRemote = true;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -27,7 +27,14 @@ in
|
||||
|
||||
# Ada/+Spark & Rust tools
|
||||
alire
|
||||
gnat
|
||||
gnat15
|
||||
gnat15Packages.gprbuild
|
||||
gnat15Packages.gpr2
|
||||
gnat15Packages.gnatprove
|
||||
gnat15Packages.gnatcoll-core
|
||||
gnat15Packages.gnatcoll-readline
|
||||
gnat15Packages.gnatcoll-python3
|
||||
gnat15Packages.gnatcoll-gmp
|
||||
rustc
|
||||
cargo
|
||||
];
|
||||
|
||||
@@ -22,6 +22,9 @@ in
|
||||
'';
|
||||
};
|
||||
|
||||
programs.direnv.enable = true;
|
||||
programs.direnv.nix-direnv.enable = true;
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
|
||||
Reference in New Issue
Block a user