Add Fifefox module
This commit is contained in:
parent
be9c200d0c
commit
cf609571f0
20 changed files with 153 additions and 168 deletions
11
flake.nix
11
flake.nix
|
@ -2,21 +2,22 @@
|
|||
description = "My systems installation";
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
nur.url = "github:nix-community/NUR";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
||||
outputs = { self, nixpkgs, home-manager, nur, ... }@inputs:
|
||||
let
|
||||
stateVersion = "23.11";
|
||||
in rec {
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
|
||||
morty = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit stateVersion;
|
||||
inherit stateVersion inputs;
|
||||
hostname = "morty";
|
||||
username = "ephase";
|
||||
hostConfig = {
|
||||
|
@ -31,7 +32,7 @@ in rec {
|
|||
mrmeeseeks = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit stateVersion;
|
||||
inherit stateVersion inputs;
|
||||
hostname = "mrmeeseeks";
|
||||
username = "ephase";
|
||||
hostConfig = {
|
||||
|
@ -46,7 +47,7 @@ in rec {
|
|||
luci = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit stateVersion;
|
||||
inherit stateVersion inputs;
|
||||
hostname = "luci";
|
||||
username = "ephase";
|
||||
hostConfig = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue