Update flake.lock

This commit is contained in:
Erwin Boskma 2022-05-04 10:46:29 +02:00
parent 4585c5e899
commit ffc6e79491
Signed by: erwin
GPG key ID: 270B20D17394F7E5
4 changed files with 26 additions and 21 deletions

View file

@ -64,11 +64,11 @@
},
"emacs-overlay": {
"locked": {
"lastModified": 1650946623,
"narHash": "sha256-YGoR+ypDCii9Kl4bZ2NgOh0DLV6xSjcyM2rZsAWVdCM=",
"lastModified": 1651577689,
"narHash": "sha256-9w2x5qf6d1oeYyY6FARvknzzzYZn8L83mS/NErR55vc=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "4356a0643b98868883425711daa02dde1290b2ed",
"rev": "f5c2505ac8d09edfa9380ab949d29d4ea3c37c9a",
"type": "github"
},
"original": {
@ -129,11 +129,11 @@
]
},
"locked": {
"lastModified": 1650920743,
"narHash": "sha256-7xxdtLp295HswhyEjr991QJsBFeadUo43NiAsHnQ5+8=",
"lastModified": 1651531343,
"narHash": "sha256-DBJFMNlWcht3jdKE2KVbcy1g/e/yryrSs1qSViQd4lE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "223a73c2ba7d358b23666937cb13a59b31df511c",
"rev": "0304f0f58b4c538ff704c58d53a778b062810ec7",
"type": "github"
},
"original": {
@ -166,11 +166,11 @@
]
},
"locked": {
"lastModified": 1650265945,
"narHash": "sha256-SO8+1db4jTOjnwP++29vVgImLIfETSXyoz0FuLkiikE=",
"lastModified": 1651574473,
"narHash": "sha256-wQhFORvRjo8LB2hTmETmv6cbyKGDPbfWqvZ/0chnDE4=",
"owner": "nix-community",
"repo": "naersk",
"rev": "e8f9f8d037774becd82fce2781e1abdb7836d7df",
"rev": "f21309b38e1da0d61b881b6b6d41b81c1aed4e1d",
"type": "github"
},
"original": {
@ -202,11 +202,11 @@
]
},
"locked": {
"lastModified": 1650388175,
"narHash": "sha256-auVEdcVtIIuBnoygUXedJewfmsf/2gSMwCrAcq/QNhM=",
"lastModified": 1650997411,
"narHash": "sha256-r4a3qsSv5UTtx+pxTUEdOphBkwTx1+AAVog3c457A0M=",
"owner": "nix-community",
"repo": "nixos-generators",
"rev": "b0326ae4f0761b9b482b8472975b3a8e86940ce2",
"rev": "3cdf22c79bc80910e2b610cd59fcb8408354ddbc",
"type": "github"
},
"original": {
@ -217,11 +217,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1650831523,
"narHash": "sha256-6pDZ08SAXsUx5rOP391x+TG39ENP/XA8VMa1tQvgEjc=",
"lastModified": 1651558728,
"narHash": "sha256-8HzyRnWlgZluUrVFNOfZAOlA1fghpOSezXvxhalGMUo=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "87d34a6b8982e901b8e50096b8e79ebc0e66cda0",
"rev": "cbe587c735b734405f56803e267820ee1559e6c1",
"type": "github"
},
"original": {
@ -347,11 +347,11 @@
]
},
"locked": {
"lastModified": 1650941217,
"narHash": "sha256-rWpp8pKM9jYcvG7JiNAw+ITOlY20h8K83S3RQc9pY74=",
"lastModified": 1651545993,
"narHash": "sha256-+Qc553XIjn9/P2YpcTsL1nIG9hpLfBT9UMAhw0PkM3E=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "b4cc9abdd42655b61325f3feb062cacc51a54de2",
"rev": "8aeb9a75d2d52700ca987559de9859ef6fe38970",
"type": "github"
},
"original": {

View file

@ -159,7 +159,7 @@
loki = defSystem "x86_64-linux" {
imports = [
(import ./machines/loki/configuration.nix { inherit self; })
(import ./machines/loki/configuration.nix { inherit self nixpkgs; })
];
};

View file

@ -1,4 +1,8 @@
{ self, ... }: {
{ self, nixpkgs, ... }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
imports = [ ./hardware-configuration.nix ../../users/erwin ../../users/root ];
eboskma = {
@ -6,6 +10,7 @@
base = {
plymouth.enable = true;
work = false;
kernel = pkgs.linuxKernel.packages.linux_5_17;
};
bluetooth.enable = true;
desktop = {

View file

@ -16,7 +16,7 @@ in
kernel = mkOption {
description = "which kernel to run";
type = types.unspecified;
default = pkgs.linuxKernel.packages.linux_5_16;
default = pkgs.linuxPackages;
};
plymouth = {