Compare commits
3 commits
b5053ab520
...
ed5f2cb13f
Author | SHA1 | Date | |
---|---|---|---|
|
ed5f2cb13f | ||
|
056f8be2a5 | ||
|
3cc55253a4 |
3 changed files with 24 additions and 11 deletions
16
flake.lock
generated
16
flake.lock
generated
|
@ -286,16 +286,16 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1687871164,
|
||||
"narHash": "sha256-bBFlPthuYX322xOlpJvkjUBz0C+MOBjZdDOOJJ+G2jU=",
|
||||
"lastModified": 1705659542,
|
||||
"narHash": "sha256-WA3xVfAk1AYmFdwghT7mt/erYpsU6JPu9mdTEP/e9HQ=",
|
||||
"owner": "rycee",
|
||||
"repo": "home-manager",
|
||||
"rev": "07c347bb50994691d7b0095f45ebd8838cf6bc38",
|
||||
"rev": "10cd9c53115061aa6a0a90aad0b0dde6a999cdb9",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "rycee",
|
||||
"ref": "release-23.05",
|
||||
"ref": "release-23.11",
|
||||
"repo": "home-manager",
|
||||
"type": "github"
|
||||
}
|
||||
|
@ -388,16 +388,16 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1691083802,
|
||||
"narHash": "sha256-bjWTVGskCWR2BdB0Glnj2FyHooNiFThkFBF4oaAMe2s=",
|
||||
"lastModified": 1706373441,
|
||||
"narHash": "sha256-S1hbgNbVYhuY2L05OANWqmRzj4cElcbLuIkXTb69xkk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "096c262bbb73d84b8298d81c7daa9890c6ccd6da",
|
||||
"rev": "56911ef3403a9318b7621ce745f5452fb9ef6867",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "release-23.05",
|
||||
"ref": "release-23.11",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
|
@ -10,13 +10,13 @@
|
|||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
||||
nur.url = "github:nix-community/NUR";
|
||||
|
||||
home-manager.url = "github:rycee/home-manager/release-23.05";
|
||||
home-manager.url = "github:rycee/home-manager/release-23.11";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
agenix.url = "github:ryantm/agenix";
|
||||
|
|
|
@ -6,12 +6,14 @@ let
|
|||
in
|
||||
{
|
||||
users.users = {
|
||||
# Raito: unused since a while, it was made for working on the production database of Hydra.
|
||||
ninjatrappeur = {
|
||||
isNormalUser = true;
|
||||
home = "/home/ninjatrappeur";
|
||||
shell = "/run/current-system/sw/bin/zsh";
|
||||
uid = 2000;
|
||||
extraGroups = trustedFriendGroups;
|
||||
expires = "2024-01-01";
|
||||
openssh.authorizedKeys.keyFiles = [ ./keys/ninjatrappeur.keys ];
|
||||
};
|
||||
linus = {
|
||||
|
@ -32,6 +34,17 @@ in
|
|||
extraGroups = trustedFriendGroups;
|
||||
openssh.authorizedKeys.keyFiles = [ ./keys/niklas.keys ];
|
||||
};
|
||||
|
||||
# Raito: Temporary account for flokli, disable when he's done with it.
|
||||
flokli = {
|
||||
isNormalUser = true;
|
||||
home = "/home/flokli";
|
||||
shell = "/run/current-system/sw/bin/zsh";
|
||||
uid = 2003;
|
||||
expires = "2024-02-01";
|
||||
extraGroups = trustedFriendGroups;
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPTVTXOutUZZjXLB0lUSgeKcSY/8mxKkC0ingGK1whD2 flokli"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue