Reformat all Nix files
This commit is contained in:
parent
9e0c1102a9
commit
355b63cf73
81 changed files with 2293 additions and 1153 deletions
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
let
|
||||
passwordFile = "/tmp/dotfiles_${config.frogeye.name}_password";
|
||||
in
|
||||
|
@ -41,15 +46,24 @@ in
|
|||
subvolumes = {
|
||||
"/nixos" = {
|
||||
mountpoint = "/";
|
||||
mountOptions = [ "compress=zstd" "noatime" ];
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
"/home" = {
|
||||
mountpoint = "/home";
|
||||
mountOptions = [ "compress=zstd" "relatime" ];
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
"relatime"
|
||||
];
|
||||
};
|
||||
"/nix" = {
|
||||
mountpoint = "/nix";
|
||||
mountOptions = [ "compress=zstd" "noatime" ];
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
# Maybe later
|
||||
# "/swap" = {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
{ pkgs, ... }:
|
||||
pkgs.writers.writePython3Bin "update-local-flakes" {} (builtins.readFile ./update-local-flakes.py)
|
||||
pkgs.writers.writePython3Bin "update-local-flakes" { } (builtins.readFile ./update-local-flakes.py)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
(self: super: {
|
||||
update-local-flakes = super.callPackage ./. {};
|
||||
update-local-flakes = super.callPackage ./. { };
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue