Compare commits

..

4 Commits

Author SHA1 Message Date
5b71825d70 packages.nix: add Blueman 2026-03-24 18:08:11 +01:00
4959baf11c Update FET to 7.8.1 2026-03-23 21:27:56 +01:00
b1eb8d16fc extensions: dash-to-dock:
- enable autohide-in-fullscreen
2026-03-23 21:24:49 +01:00
a4c34f9857 Reformat with alejandra 2026-03-23 21:24:20 +01:00
49 changed files with 213 additions and 264 deletions

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
imports = [
./modules
./hardware-configuration.nix
@@ -130,7 +129,9 @@
bluetooth = {
enable = true;
package = pkgs.bluez.overrideAttrs (old: {
configureFlags = old.configureFlags ++ [
configureFlags =
old.configureFlags
++ [
"--enable-sixaxis"
];
});

View File

@@ -14,14 +14,12 @@
};
};
outputs =
{
outputs = {
self,
nixpkgs,
czkawka-src,
naersk,
}:
let
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
naersk-lib = pkgs.callPackage naersk {};
@@ -44,8 +42,7 @@
libXrandr
wayland
];
in
{
in {
packages.${system}.default = naersk-lib.buildPackage {
pname = "krokiet";
version = "master";
@@ -54,8 +51,7 @@
nativeBuildInputs = nativeBuildInputs;
buildInputs = runtimeLibs;
cargoBuildOptions =
x:
cargoBuildOptions = x:
x
++ [
"-p"

View File

@@ -6,25 +6,22 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
system: let
pkgs = nixpkgs.legacyPackages.${system};
in
{
in {
packages.default = pkgs.stdenv.mkDerivation rec {
pname = "fet";
version = "7.8.0";
version = "7.8.1";
src = pkgs.fetchurl {
url = "https://lalescu.ro/liviu/fet/download/fet-${version}.tar.xz";
sha256 = "01hr3digrg2qs5wh10qzpgwi4clqmzd46d099r0yrx3278qvz9wj";
sha256 = "0b0g20mgawpv6pp6b1vh0vhz6rr0193g2irqiclnxxlnf174bcfr";
};
enableParallelBuilding = true;

View File

@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest;

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
nix.settings = {
substituters = [
"https://attic.awroo.fun/my-config"

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./attic.nix
./flatpak.nix

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
services.flatpak = {
enable = true;
update.auto.enable = true;

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
environment = {
gnome.excludePackages = with pkgs; [
decibels

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./apps.nix
./extensions.nix

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
dconf.settings = {
"org/gnome/shell/extensions/user-theme" = {
name = "Flat-Remix-Darkest-fullPanel";
@@ -29,7 +28,7 @@
"org/gnome/shell/extensions/dash-to-dock" = {
apply-custom-theme = false;
autohide-in-fullscreen = false;
autohide-in-fullscreen = true;
background-color = "rgb(0,0,0)";
background-opacity = 0.8;
click-action = "skip";

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
dconf.settings = {
"org/gnome/desktop/interface" = {
accent-color = "red";

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./dconf
./desktop-files.nix

View File

@@ -2,8 +2,7 @@
config,
pkgs,
...
}:
{
}: {
xdg.dataFile."applications/clion.desktop".text = ''
[Desktop Entry]
Type=Application

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
programs.starship = {
enable = true;
settings = {

View File

@@ -1,5 +1,4 @@
{ config, ... }:
{
{config, ...}: {
programs.zsh = {
enable = true;
enableCompletion = true;

View File

@@ -6,8 +6,7 @@
solaar-master,
fet,
...
}:
{
}: {
nixpkgs = {
config = {
allowUnfree = true;
@@ -153,7 +152,8 @@
vkbasalt
vlc
(vscode.fhsWithPackages (
ps: with ps; [
ps:
with ps; [
python3
zlib
gcc

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
programs = {
dconf.profiles.gdm.databases = [
{

View File

@@ -3,13 +3,14 @@
pkgs,
lib,
...
}:
{
}: {
services = {
sshd.enable = true;
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
blueman.enable = true;
geoclue2.enable = true;
xserver = {

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
imports = [
./hardware-configuration.nix
./modules

View File

@@ -7,8 +7,7 @@
pkgs,
modulesPath,
...
}:
{
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./flatpak.nix
./gdm-monitors.nix

View File

@@ -3,6 +3,5 @@
pkgs,
lib,
...
}:
{
}: {
}

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
let
}: let
gdmMonitorsXml = pkgs.writeText "gdm-monitor.xml" ''
<monitors version="2">
<configuration>
@@ -291,8 +290,7 @@ let
</configuration>
</monitors>
'';
in
{
in {
systemd.tmpfiles.rules = [
"L+ /run/gdm/.config/monitors.xml - - - - ${gdmMonitorsXml}"
];

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
environment = {
systemPackages = with pkgs.gnomeExtensions; [
control-monitor-brightness-and-volume-with-ddcutil

View File

@@ -1,4 +1,3 @@
{ ... }:
{
{...}: {
dconf.settings = {};
}

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./apps.nix
./extensions.nix

View File

@@ -1,4 +1,3 @@
{ ... }:
{
{...}: {
dconf.settings = {};
}

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
dconf.settings = {
"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = lib.mkAfter [

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./dconf
];

View File

@@ -4,8 +4,7 @@
lib,
czkawka-master,
...
}:
{
}: {
environment.systemPackages = with pkgs; [
amdgpu_top
arch-install-scripts

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
programs = {
ccache = {
enable = true;

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
environment.systemPackages = with pkgs; [
zram-generator
];

View File

@@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
virtualisation.vmVariant = {
virtualisation = {
memorySize = 8192;

30
flake.lock generated
View File

@@ -19,11 +19,11 @@
"czkawka-src": {
"flake": false,
"locked": {
"lastModified": 1773724747,
"narHash": "sha256-wXiP4t5fQlAVrpZyJcIhUJ1Mdjn94eUaAOR4b08cWAI=",
"lastModified": 1774297847,
"narHash": "sha256-iEgM0Wjhyy2H6HxnqY7YDAHiuDIUaw5rmsE1Zsij/nk=",
"owner": "qarmin",
"repo": "czkawka",
"rev": "28ae8bae1ebe9858b395364386aefba6bcd40c45",
"rev": "7680c07130f7bbfb5019e328362eaaebdce7aece",
"type": "github"
},
"original": {
@@ -95,11 +95,11 @@
]
},
"locked": {
"lastModified": 1774210133,
"narHash": "sha256-yeiWCY9aAUUJ3ebMVjs0UZXRnT5x90MCtpbpOWiXrvM=",
"lastModified": 1774371786,
"narHash": "sha256-ag1HUJv0SDBqKAYxwWlvAE2gBsEk3XYFvWtmdAHFz7E=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "c6fe2944ad9f2444b2d767c4a5edee7c166e8a95",
"rev": "b8cb89f2c4f7006b17b4aa5d8b39b95b93b559d8",
"type": "github"
},
"original": {
@@ -147,11 +147,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1773821835,
"narHash": "sha256-TJ3lSQtW0E2JrznGVm8hOQGVpXjJyXY2guAxku2O9A4=",
"lastModified": 1774106199,
"narHash": "sha256-US5Tda2sKmjrg2lNHQL3jRQ6p96cgfWh3J1QBliQ8Ws=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b40629efe5d6ec48dd1efba650c797ddbd39ace0",
"rev": "6c9a78c09ff4d6c21d0319114873508a6ec01655",
"type": "github"
},
"original": {
@@ -163,11 +163,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1773821835,
"narHash": "sha256-TJ3lSQtW0E2JrznGVm8hOQGVpXjJyXY2guAxku2O9A4=",
"lastModified": 1774106199,
"narHash": "sha256-US5Tda2sKmjrg2lNHQL3jRQ6p96cgfWh3J1QBliQ8Ws=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b40629efe5d6ec48dd1efba650c797ddbd39ace0",
"rev": "6c9a78c09ff4d6c21d0319114873508a6ec01655",
"type": "github"
},
"original": {
@@ -179,11 +179,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1774235121,
"narHash": "sha256-CzpSER+YKq4yD+RPom6Su9c/4FutF+sD4rEnls+4MyM=",
"lastModified": 1774321912,
"narHash": "sha256-Nna0UkHU2xmhyx0VAel4DDdwpAlA70ZgzAtOD4m3Pc8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1116aed2cee959f7d054a462458513ad323b710a",
"rev": "b0d3faa43b2bd4cc22fdf98ee00cac4f2f47ac8a",
"type": "github"
},
"original": {

View File

@@ -11,18 +11,15 @@
fet.url = "path:./common/flakes/fet";
};
outputs =
{
outputs = {
self,
nixpkgs,
nix-flatpak,
home-manager,
...
}@inputs:
let
} @ inputs: let
specialArgs = {inherit (inputs) czkawka-master fet;};
in
{
in {
nixosConfigurations = {
epiquev2 = nixpkgs.lib.nixosSystem {
inherit specialArgs;

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
imports = [
./hardware-configuration.nix
./modules

View File

@@ -7,8 +7,7 @@
pkgs,
modulesPath,
...
}:
{
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./flatpak.nix
./gnome.nix

View File

@@ -3,6 +3,5 @@
pkgs,
lib,
...
}:
{
}: {
}

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
environment = {
systemPackages = with pkgs.gnomeExtensions; [
];

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
dconf.settings = {
"org/gnome/Console" = {
custom-font = "FiraCode Nerd Font Mono 11";

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./apps.nix
./extensions.nix

View File

@@ -1,4 +1,3 @@
{ ... }:
{
{...}: {
dconf.settings = {};
}

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
dconf.settings = {
"org/gnome/desktop/peripherals/touchpad" = {
click-method = "areas";

View File

@@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./dconf
];

View File

@@ -3,8 +3,7 @@
pkgs,
lib,
...
}:
{
}: {
environment.systemPackages = with pkgs; [
btop
gnome-power-manager

View File

@@ -1,3 +1,2 @@
{ ... }:
{
{...}: {
}

View File

@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
services.thermald.enable = true;
services.power-profiles-daemon.enable = false;
services.tlp = {