Compare commits
12 Commits
6272ac29f2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a433f8fdde | ||
|
|
39a2703698 | ||
|
|
9c5f8eff46 | ||
|
|
3d45ff4c86 | ||
|
|
a82d1f592c | ||
|
|
f5a23fc052 | ||
|
|
6ebbbe16a7 | ||
|
|
debeda83a6 | ||
|
|
172714fd14 | ||
|
|
d65e7d9e57 | ||
|
|
51796232ad | ||
|
|
199d69b79a |
@@ -4,6 +4,6 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
element-desktop
|
fluffychat
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,10 +44,24 @@ in
|
|||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.xkb = {
|
services.xserver.xkb = {
|
||||||
layout = "de";
|
layout = "de-latin1";
|
||||||
variant = "";
|
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
|
# Configure console keymap
|
||||||
console.keyMap = "de-latin1";
|
console.keyMap = "de-latin1";
|
||||||
|
|
||||||
@@ -56,11 +70,53 @@ in
|
|||||||
networkmanager
|
networkmanager
|
||||||
epiphany
|
epiphany
|
||||||
nodejs_24
|
nodejs_24
|
||||||
podman
|
dive
|
||||||
podman-tui
|
podman-tui
|
||||||
podman-compose
|
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.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|||||||
@@ -21,12 +21,14 @@ in
|
|||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = true;
|
||||||
|
|
||||||
services.xserver = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
displayManager.lightdm = {
|
settings = {
|
||||||
enable = true;
|
default_session = {
|
||||||
greeters.slick.enable = true;
|
command = "Hyprland";
|
||||||
|
user = profile.username;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ let
|
|||||||
|
|
||||||
dotfiles_waybar = pkgs.fetchgit {
|
dotfiles_waybar = pkgs.fetchgit {
|
||||||
url = "https://git.nichkara.eu/dotfiles/waybar";
|
url = "https://git.nichkara.eu/dotfiles/waybar";
|
||||||
rev = "47a5d2b7795fcdb26bff3a91864d19158cfc5c5c";
|
rev = "cd3d5d8a97f9fbc1cc8a69fc9e570dfcf669dce7";
|
||||||
sha256 = "sha256-0S0S+qIEa20GWeHGEOzji6rPQPPzDvyZFpyHewLuxKw=";
|
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
profile = import ../../profile.nix;
|
profile = import ../../profile.nix;
|
||||||
@@ -28,6 +28,8 @@ in
|
|||||||
pamixer
|
pamixer
|
||||||
pavucontrol
|
pavucontrol
|
||||||
brightnessctl
|
brightnessctl
|
||||||
|
python313Packages.requests
|
||||||
|
networkmanagerapplet
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
|
|||||||
@@ -15,11 +15,11 @@ in
|
|||||||
|
|
||||||
users.users.${profile.username} = {
|
users.users.${profile.username} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Nina Chloé Kassandra";
|
description = "Nina Chlóe Kassandra";
|
||||||
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
|
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp" "uucp" "dialout"];
|
||||||
packages = with pkgs; [];
|
packages = with pkgs; [];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
hashedPassword = profile.hashed-password;
|
hashedPassword = profile.hashed-password;
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.backupFileExtension = "bck.lck";
|
home-manager.backupFileExtension = "bck.lck";
|
||||||
@@ -36,6 +36,7 @@ in
|
|||||||
push = {
|
push = {
|
||||||
autoSetupRemote = true;
|
autoSetupRemote = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
./file-system.nix
|
./file-system.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
|
./security/keyring.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
@@ -26,7 +27,14 @@ in
|
|||||||
|
|
||||||
# Ada/+Spark & Rust tools
|
# Ada/+Spark & Rust tools
|
||||||
alire
|
alire
|
||||||
gnat
|
gnat15
|
||||||
|
gnat15Packages.gprbuild
|
||||||
|
gnat15Packages.gpr2
|
||||||
|
gnat15Packages.gnatprove
|
||||||
|
gnat15Packages.gnatcoll-core
|
||||||
|
gnat15Packages.gnatcoll-readline
|
||||||
|
gnat15Packages.gnatcoll-python3
|
||||||
|
gnat15Packages.gnatcoll-gmp
|
||||||
rustc
|
rustc
|
||||||
cargo
|
cargo
|
||||||
];
|
];
|
||||||
|
|||||||
18
system-environment/security/keyring.nix
Normal file
18
system-environment/security/keyring.nix
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
profile = import ../profile.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
imports = [ ];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
seahorse
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
};
|
||||||
|
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
security.pam.services.login.enableGnomeKeyring = true;
|
||||||
|
}
|
||||||
@@ -22,6 +22,9 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.direnv.enable = true;
|
||||||
|
programs.direnv.nix-direnv.enable = true;
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user