shit i changed way too much at once
This commit is contained in:
parent
7fd8e6c7c4
commit
38287035e7
22 changed files with 195 additions and 172 deletions
34
flake.lock
34
flake.lock
|
@ -1,5 +1,23 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1709126324,
|
||||||
|
"narHash": "sha256-q6EQdSeUZOG26WelxqkmR7kArjgWCdw5sfJVHPH/7j8=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "d465f4819400de7c8d874d50b982301f28a84605",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"home-manager": {
|
"home-manager": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
@ -53,10 +71,26 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable"
|
"nixpkgs-unstable": "nixpkgs-unstable"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"systems": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": "root",
|
"root": "root",
|
||||||
|
|
100
flake.nix
100
flake.nix
|
@ -2,62 +2,64 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "nixpkgs/nixos-23.11";
|
nixpkgs.url = "nixpkgs/nixos-23.11";
|
||||||
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
|
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-23.11";
|
url = "github:nix-community/home-manager/release-23.11";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs = inputs @ {
|
||||||
inputs @ { self
|
self,
|
||||||
, nixpkgs
|
nixpkgs,
|
||||||
, nixpkgs-unstable
|
nixpkgs-unstable,
|
||||||
, home-manager
|
home-manager,
|
||||||
, ...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
inherit (self) outputs;
|
||||||
mkHost = { hostname, user ? "sammy" }: {
|
lib = nixpkgs.lib // home-manager.lib;
|
||||||
|
mkHost = {
|
||||||
|
hostname,
|
||||||
|
user ? "sammy",
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
./hosts/${hostname}/configuration.nix
|
||||||
|
./modules/common.nix
|
||||||
|
(import "${home-manager}/nixos")
|
||||||
|
];
|
||||||
|
|
||||||
imports = [
|
deployment = {
|
||||||
./hosts/${hostname}/configuration.nix
|
targetUser = user;
|
||||||
./modules
|
allowLocalDeployment = true;
|
||||||
(import "${home-manager}/nixos")
|
|
||||||
];
|
|
||||||
|
|
||||||
deployment = {
|
|
||||||
targetUser = user;
|
|
||||||
allowLocalDeployment = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
|
||||||
colmena = {
|
|
||||||
meta = {
|
|
||||||
description = "All my NixoS machines";
|
|
||||||
specialArgs = {
|
|
||||||
flake = self;
|
|
||||||
};
|
|
||||||
nixpkgs = import nixpkgs {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
overlays = [ ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
bengal = mkHost { hostname = "bengal"; };
|
|
||||||
|
|
||||||
maine-coon = mkHost { hostname = "maine-coon"; };
|
|
||||||
};
|
|
||||||
nixosConfigurations.test = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
specialArgs = {
|
|
||||||
flake = self;
|
|
||||||
};
|
|
||||||
modules = [
|
|
||||||
./modules
|
|
||||||
./hosts/test-vm/configuration.nix
|
|
||||||
(import "${home-manager}/nixos")
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
inherit lib;
|
||||||
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
||||||
|
colmena = {
|
||||||
|
meta = {
|
||||||
|
description = "All my NixoS machines";
|
||||||
|
specialArgs = {inherit inputs outputs;};
|
||||||
|
nixpkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
overlays = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
bengal = mkHost {hostname = "bengal";};
|
||||||
|
|
||||||
|
maine-coon = mkHost {hostname = "maine-coon";};
|
||||||
|
};
|
||||||
|
nixosConfigurations.test = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
specialArgs = {
|
||||||
|
flake = self;
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
./modules
|
||||||
|
./hosts/test-vm/configuration.nix
|
||||||
|
(import "${home-manager}/nixos")
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = ["ahci" "nvme"];
|
boot.initrd.availableKernelModules = ["ahci" "nvme"];
|
||||||
boot.initrd.kernelModules = [];
|
boot.initrd.kernelModules = [];
|
||||||
boot.kernelModules = ["kvm-intel"];
|
boot.kernelModules = ["kvm-intel"];
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
{ pkgs, config, lib, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.cherrykitten;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.cherrykitten;
|
||||||
|
in {
|
||||||
|
options.cherrykitten = {};
|
||||||
|
|
||||||
options.cherrykitten = { };
|
config = {};
|
||||||
|
|
||||||
config = { };
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,10 +13,19 @@ in {
|
||||||
example = "nyanya";
|
example = "nyanya";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
imports = [
|
||||||
|
./graphical.nix
|
||||||
|
./security.nix
|
||||||
|
./users
|
||||||
|
./yubikey.nix
|
||||||
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||||
|
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
{ pkgs, config, lib, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.cherrykitten;
|
|
||||||
in
|
|
||||||
with lib;
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./common.nix
|
|
||||||
./graphical.nix
|
|
||||||
./security.nix
|
|
||||||
./users.nix
|
|
||||||
./yubikey.nix
|
|
||||||
./nvim
|
|
||||||
./shell/fish.nix
|
|
||||||
|
|
||||||
];
|
|
||||||
options.cherrykitten = { };
|
|
||||||
|
|
||||||
config = {
|
|
||||||
|
|
||||||
cherrykitten.fish.enable = mkDefault true;
|
|
||||||
cherrykitten.graphical.enable = mkDefault false;
|
|
||||||
};
|
|
||||||
}
|
|
28
modules/home/default.nix
Normal file
28
modules/home/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [./fish ./nvim];
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
bat
|
||||||
|
lsd
|
||||||
|
gnupg
|
||||||
|
tmux
|
||||||
|
colmena
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
home-manager.enable = true;
|
||||||
|
|
||||||
|
git = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
init = {defaultBranch = "main";};
|
||||||
|
core = {editor = "nvim";};
|
||||||
|
pull.rebase = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
21
modules/home/fish/default.nix
Normal file
21
modules/home/fish/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.fish = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
fish_prompt = {
|
||||||
|
source = ./fish_prompt.fish;
|
||||||
|
target = ".config/fish/functions/fish_prompt.fish";
|
||||||
|
};
|
||||||
|
fish_right_prompt = {
|
||||||
|
source = ./fish_right_prompt.fish;
|
||||||
|
target = ".config/fish/functions/fish_right_prompt.fish";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home-manager.users.sammy.programs.neovim = let
|
programs.neovim = let
|
||||||
toLua = str: "lua << EOF\n${str}\nEOF\n";
|
toLua = str: "lua << EOF\n${str}\nEOF\n";
|
||||||
toLuaFile = file: "lua << EOF\n${builtins.readFile file}\nEOF\n";
|
toLuaFile = file: "lua << EOF\n${builtins.readFile file}\nEOF\n";
|
||||||
in {
|
in {
|
|
@ -7,7 +7,7 @@
|
||||||
logLevel = "VERBOSE";
|
logLevel = "VERBOSE";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
StreamLocalBindUnlink yes
|
StreamLocalBindUnlink yes
|
||||||
'';
|
'';
|
||||||
settings = {
|
settings = {
|
||||||
PermitRootLogin = "no";
|
PermitRootLogin = "no";
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
{ pkgs, config, lib, flake, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.cherrykitten.fish;
|
|
||||||
in
|
|
||||||
with lib;
|
|
||||||
{
|
|
||||||
|
|
||||||
options.cherrykitten.fish.enable = mkEnableOption "Fish-Shell";
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home-manager.users.sammy = {
|
|
||||||
|
|
||||||
programs.fish = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.file = {
|
|
||||||
fish_prompt = {
|
|
||||||
source = flake + files/config/fish/functions/fish_prompt.fish;
|
|
||||||
target = ".config/fish/functions/fish_prompt.fish";
|
|
||||||
};
|
|
||||||
fish_right_prompt = {
|
|
||||||
source = flake + files/config/fish/functions/fish_right_prompt.fish;
|
|
||||||
target = ".config/fish/functions/fish_right_prompt.fish";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,59 +0,0 @@
|
||||||
{ lib
|
|
||||||
, pkgs
|
|
||||||
, config
|
|
||||||
, ...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
cfg = config.cherrykitten;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
|
|
||||||
options.cherrykitten.users = { };
|
|
||||||
|
|
||||||
config = {
|
|
||||||
users.users = {
|
|
||||||
sammy = {
|
|
||||||
isNormalUser = true;
|
|
||||||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
|
||||||
shell = pkgs.fish;
|
|
||||||
ignoreShellProgramCheck = true;
|
|
||||||
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJZyQSZw+pExsx2RXB+yxbaJGB9mtvudbQ/BP7E1yKvr openpgp:0x6068FEBB" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users.sammy = {
|
|
||||||
home.username = "sammy";
|
|
||||||
home.homeDirectory = "/home/sammy";
|
|
||||||
home.stateVersion = "23.11"; # Please read the comment before changing.
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
bat
|
|
||||||
lsd
|
|
||||||
gnupg
|
|
||||||
tmux
|
|
||||||
colmena
|
|
||||||
];
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
home-manager.enable = true;
|
|
||||||
|
|
||||||
git = {
|
|
||||||
enable = true;
|
|
||||||
userName = "CherryKitten";
|
|
||||||
userEmail = "git@cherrykitten.dev";
|
|
||||||
signing.key = "0xC01A7CBBA617BD5F";
|
|
||||||
signing.signByDefault = true;
|
|
||||||
extraConfig = {
|
|
||||||
init = { defaultBranch = "main"; };
|
|
||||||
core = { editor = "nvim"; };
|
|
||||||
pull.rebase = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "nvim";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
24
modules/users/default.nix
Normal file
24
modules/users/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.cherrykitten.users;
|
||||||
|
in {
|
||||||
|
options.cherrykitten.users = {
|
||||||
|
sammy.enable = lib.mkEnableOption "sammy" // {default = true;};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
users.users.sammy = lib.mkIf cfg.sammy.enable {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = ["networkmanager" "wheel" "docker"];
|
||||||
|
shell = pkgs.fish;
|
||||||
|
ignoreShellProgramCheck = true;
|
||||||
|
openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJZyQSZw+pExsx2RXB+yxbaJGB9mtvudbQ/BP7E1yKvr openpgp:0x6068FEBB"];
|
||||||
|
};
|
||||||
|
|
||||||
|
home-manager.users.sammy = lib.mkIf cfg.sammy.enable (import ./sammy.nix);
|
||||||
|
};
|
||||||
|
}
|
17
modules/users/sammy.nix
Normal file
17
modules/users/sammy.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [../home];
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
userName = "CherryKitten";
|
||||||
|
userEmail = "git@cherrykitten.dev";
|
||||||
|
signing.key = "0xC01A7CBBA617BD5F";
|
||||||
|
signing.signByDefault = true;
|
||||||
|
};
|
||||||
|
home.username = "sammy";
|
||||||
|
home.homeDirectory = "/home/sammy";
|
||||||
|
home.stateVersion = "23.11"; # Please read the comment before changing.
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue