mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
Thilo Billerbeck
6c7d9895ca
Flake lock file updates: • Updated input 'devenv': 'github:cachix/devenv/a7c4dd8f4eb1f98a6b8f04bf08364954e1e73e4f' (2023-11-28) → 'github:cachix/devenv/df9852210129eadfcb3ad23897e82bee0a641e45' (2024-01-09) • Updated input 'home-manager': 'github:nix-community/home-manager/ac7216918cd65f3824ba7817dea8f22e61221eaf' (2023-12-04) → 'github:nix-community/home-manager/e13aa9e287b3365473e5897e3667ea80a899cdfb' (2024-01-09) • Updated input 'nix-software-center': 'github:vlinkz/nix-software-center/8faa762f9b710520f8b7f81f4892a6e0aba749dc' (2023-08-27) → 'github:vlinkz/nix-software-center/68e87fb6e24fb3e6fe65449918d0cbda96622b65' (2023-12-20) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/91050ea1e57e50388fa87a3302ba12d188ef723a' (2023-12-01) → 'github:NixOS/nixpkgs/46ae0210ce163b3cba6c7da08840c1d63de9c701' (2024-01-06) • Updated input 'nixpkgs-update': 'github:ryantm/nixpkgs-update/a3fd7a8a741015be0613c80e95e78a4853569f8e' (2023-10-10) → 'github:ryantm/nixpkgs-update/06c801641238b1b57320987337b048c98fa0793d' (2023-12-21)
15 lines
258 B
Nix
15 lines
258 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./../../home-manager/modules/machine.nix
|
|
];
|
|
|
|
machine = {
|
|
username = "thilo";
|
|
isGeneric = true;
|
|
isGnome = false;
|
|
noiseSuppression.enable = false;
|
|
isGraphical = false;
|
|
};
|
|
}
|