Compare commits

...

6 commits

6 changed files with 7 additions and 10 deletions

View file

@ -1,10 +1,10 @@
{ self, inputs, ... }:
{ inputs, ... }:
{
imports = [
inputs.pre-commit-hooks.flakeModule
];
perSystem = { system, ... }: {
perSystem = { ... }: {
pre-commit = {
# Add itself to `nix flake check`
check.enable = true;

View file

@ -1,9 +1,6 @@
{ self
, flake-parts
, futils
, home-manager
, nixpkgs
, nur
, ...
} @ inputs:
let

View file

@ -1,6 +1,6 @@
{ inputs, ... }:
{ ... }:
{
perSystem = { self', config, pkgs, ... }: {
perSystem = { config, pkgs, ... }: {
devShells = {
default = pkgs.mkShell {
name = "NixOS-config";

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.my.home.terminal;
in

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.my.hardware.firmware;
in

View file

@ -1,5 +1,5 @@
# Podman related settings
{ config, inputs, lib, options, pkgs, ... }:
{ config, lib, options, ... }:
let
cfg = config.my.system.podman;
in