mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
ref(nix): formatted with nixfmt-rfc-style
This commit is contained in:
parent
36a2265325
commit
23404db605
40 changed files with 574 additions and 474 deletions
|
|
@ -1,57 +1,60 @@
|
|||
{
|
||||
outputs = {...} @ inputs: let
|
||||
inherit
|
||||
(import ./lib.nix inputs)
|
||||
mkNixOSes
|
||||
mkDarwins
|
||||
mkHomeManagers
|
||||
myPkgs
|
||||
myLib
|
||||
formatter
|
||||
;
|
||||
outputs =
|
||||
{ ... }@inputs:
|
||||
let
|
||||
inherit (import ./lib.nix inputs)
|
||||
mkNixOSes
|
||||
mkDarwins
|
||||
mkHomeManagers
|
||||
myPkgs
|
||||
myLib
|
||||
formatter
|
||||
;
|
||||
|
||||
darwinConfigurations = mkDarwins {
|
||||
# MacBook Pro 2021
|
||||
bismuth = {
|
||||
system = "aarch64-darwin";
|
||||
settings = {
|
||||
extraLanguageServers.enable = true;
|
||||
extraUtils.enable = true;
|
||||
cmus.enable = true;
|
||||
universityTools.enable = true;
|
||||
docker.enable = true;
|
||||
darwinConfigurations = mkDarwins {
|
||||
# MacBook Pro 2021
|
||||
bismuth = {
|
||||
system = "aarch64-darwin";
|
||||
settings = {
|
||||
extraLanguageServers.enable = true;
|
||||
extraUtils.enable = true;
|
||||
cmus.enable = true;
|
||||
universityTools.enable = true;
|
||||
docker.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = mkHomeManagers {
|
||||
# MacBook Air 2014
|
||||
tungsten = {
|
||||
system = "x86_64-darwin";
|
||||
settings.cmus.enable = true;
|
||||
homeConfigurations = mkHomeManagers {
|
||||
# MacBook Air 2014
|
||||
tungsten = {
|
||||
system = "x86_64-darwin";
|
||||
settings.cmus.enable = true;
|
||||
};
|
||||
# Raspberry Pi 4
|
||||
hydrogen.system = "aarch64-linux";
|
||||
# Oracle cloud
|
||||
oracle.system = "aarch64-linux";
|
||||
# Linode
|
||||
linode.system = "x86_64-linux";
|
||||
};
|
||||
# Raspberry Pi 4
|
||||
hydrogen.system = "aarch64-linux";
|
||||
# Oracle cloud
|
||||
oracle.system = "aarch64-linux";
|
||||
# Linode
|
||||
linode.system = "x86_64-linux";
|
||||
};
|
||||
|
||||
nixosConfigurations = mkNixOSes {
|
||||
# Thinkpad
|
||||
carbon = {
|
||||
system = "x86_64-linux";
|
||||
settings = {
|
||||
extraLanguageServers.enable = true;
|
||||
extraUtils.enable = true;
|
||||
cmus.enable = true;
|
||||
universityTools.enable = true;
|
||||
nixosConfigurations = mkNixOSes {
|
||||
# Thinkpad
|
||||
carbon = {
|
||||
system = "x86_64-linux";
|
||||
settings = {
|
||||
extraLanguageServers.enable = true;
|
||||
extraUtils.enable = true;
|
||||
cmus.enable = true;
|
||||
universityTools.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
in
|
||||
{inherit nixosConfigurations homeConfigurations darwinConfigurations;}
|
||||
in
|
||||
{
|
||||
inherit nixosConfigurations homeConfigurations darwinConfigurations;
|
||||
}
|
||||
// formatter
|
||||
// myPkgs
|
||||
// myLib;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue