Add franz configuration
This commit is contained in:
parent
bdf4e931e7
commit
105d869bbb
4 changed files with 100 additions and 0 deletions
21
flake.lock
21
flake.lock
|
@ -79,6 +79,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"disko": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1709286488,
|
||||||
|
"narHash": "sha256-RDpTZ72zLu05djvXRzK76Ysqp9zSdh84ax/edEaJucs=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "disko",
|
||||||
|
"rev": "bde7dd352c07d43bd5b8245e6c39074a391fdd46",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "disko",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"firefox-addons": {
|
"firefox-addons": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": "flake-utils_3",
|
"flake-utils": "flake-utils_3",
|
||||||
|
@ -678,6 +698,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"arkenfox": "arkenfox",
|
"arkenfox": "arkenfox",
|
||||||
|
"disko": "disko",
|
||||||
"firefox-addons": "firefox-addons",
|
"firefox-addons": "firefox-addons",
|
||||||
"flatpaks": "flatpaks",
|
"flatpaks": "flatpaks",
|
||||||
"hardware": "hardware",
|
"hardware": "hardware",
|
||||||
|
|
19
flake.nix
19
flake.nix
|
@ -14,6 +14,12 @@
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
hardware.url = "github:nixos/nixos-hardware";
|
hardware.url = "github:nixos/nixos-hardware";
|
||||||
|
|
||||||
|
disko = {
|
||||||
|
url = "github:nix-community/disko";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
nh = {
|
nh = {
|
||||||
url = "github:viperml/nh";
|
url = "github:viperml/nh";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -83,6 +89,12 @@
|
||||||
./hosts/ludwig
|
./hosts/ludwig
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
franz = nixpkgs.lib.nixosSystem {
|
||||||
|
specialArgs = {inherit inputs outputs vars;};
|
||||||
|
modules = [
|
||||||
|
./hosts/franz
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
|
@ -103,6 +115,13 @@
|
||||||
./home/ludwig.nix
|
./home/ludwig.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"${vars.user}@franz" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||||
|
extraSpecialArgs = {inherit inputs outputs vars;};
|
||||||
|
modules = [
|
||||||
|
./home/franz.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
# "${vars.user}@eustachius" = home-manager.lib.homeManagerConfiguration {
|
# "${vars.user}@eustachius" = home-manager.lib.homeManagerConfiguration {
|
||||||
# pkgs = nixpkgs.legacyPackages.aarch64-linux; # Home-manager requires 'pkgs' instance
|
# pkgs = nixpkgs.legacyPackages.aarch64-linux; # Home-manager requires 'pkgs' instance
|
||||||
# extraSpecialArgs = {inherit inputs outputs vars;};
|
# extraSpecialArgs = {inherit inputs outputs vars;};
|
||||||
|
|
14
home/franz.nix
Normal file
14
home/franz.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
outputs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
in {
|
||||||
|
imports = [
|
||||||
|
./global
|
||||||
|
./features/coding
|
||||||
|
inputs.nix-colors.homeManagerModules.default
|
||||||
|
];
|
||||||
|
|
||||||
|
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
|
||||||
|
}
|
46
hosts/franz/default.nix
Normal file
46
hosts/franz/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
outputs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
inputs.hardware.nixosModules.common-pc-ssd
|
||||||
|
inputs.disko.nixosModules.default
|
||||||
|
|
||||||
|
./hardware-configuration.nix
|
||||||
|
./disko.nix
|
||||||
|
|
||||||
|
../common/global
|
||||||
|
|
||||||
|
../common/optional/systemd-boot.nix
|
||||||
|
../common/optional/gnome-keyring.nix
|
||||||
|
../common/optional/docker.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
nix.extraOptions = ''
|
||||||
|
download-speed = 4000
|
||||||
|
'';
|
||||||
|
|
||||||
|
nixpkgs = {
|
||||||
|
overlays = [
|
||||||
|
outputs.overlays.additions
|
||||||
|
outputs.overlays.modifications
|
||||||
|
outputs.overlays.unstable-packages
|
||||||
|
];
|
||||||
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.hostName = "franz";
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
dconf.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
|
system.stateVersion = "23.11";
|
||||||
|
}
|
Loading…
Reference in a new issue