format with nixfmt to nixpkgs standarts
nix flake show / show-flake (push) Successful in 27s

This commit is contained in:
smayzy
2025-07-24 19:19:46 +02:00
parent 8ce74dd7bf
commit 092579af98
56 changed files with 438 additions and 218 deletions
+14 -7
View File
@@ -1,18 +1,25 @@
{ inputs, pkgs, overlays, ... }:
{
inputs,
pkgs,
overlays,
...
}:
{
imports =
[
inputs.home-manager.nixosModules.home-manager
../../modules/nix/default.nix
];
imports = [
inputs.home-manager.nixosModules.home-manager
../../modules/nix/default.nix
];
nixpkgs.overlays = overlays;
users.users.smayzy = {
isNormalUser = true;
description = "smayzy";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [
"networkmanager"
"wheel"
];
};
environment.systemPackages = with pkgs; [
+8 -9
View File
@@ -1,9 +1,8 @@
{ pkgs, ... }:
{
imports =
[
../../modules/home-manager/default.nix
imports = [
../../modules/home-manager/default.nix
];
smayzy.webapps.enable = true;
@@ -26,7 +25,7 @@
recursive = true;
force = true;
};
"wallpaper" = {
"wallpaper" = {
source = builtins.toPath ../../wallpapers;
recursive = true;
force = true;
@@ -41,8 +40,8 @@
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
@@ -53,9 +52,9 @@
syntaxHighlighting.enable = true;
history.size = 100000;
shellAliases = {
grep = "grep --color=auto";
cp = "cp -r";
cd = "sl";
grep = "grep --color=auto";
cp = "cp -r";
cd = "sl";
};
};